mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-06-27 15:49:23 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
db012bd9b7 | |||
dd2374158b | |||
6693157258 |
@ -156,8 +156,11 @@ func (b *Birc) handleOtherAuth(client *girc.Client, event girc.Event) {
|
|||||||
b.handleNickServ()
|
b.handleNickServ()
|
||||||
b.handleRunCommands()
|
b.handleRunCommands()
|
||||||
// we are now fully connected
|
// we are now fully connected
|
||||||
|
// only send on first connection
|
||||||
|
if b.FirstConnection {
|
||||||
b.connected <- nil
|
b.connected <- nil
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (b *Birc) handlePrivMsg(client *girc.Client, event girc.Event) {
|
func (b *Birc) handlePrivMsg(client *girc.Client, event girc.Event) {
|
||||||
if b.skipPrivMsg(event) {
|
if b.skipPrivMsg(event) {
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
# v1.14.3
|
||||||
|
|
||||||
|
## Bugfix
|
||||||
|
* irc: Fix deadlock on reconnect (irc). Closes #757
|
||||||
|
|
||||||
# v1.14.2
|
# v1.14.2
|
||||||
|
|
||||||
## Bugfix
|
## Bugfix
|
||||||
|
@ -15,7 +15,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
version = "1.14.2"
|
version = "1.14.3"
|
||||||
githash string
|
githash string
|
||||||
|
|
||||||
flagConfig = flag.String("conf", "matterbridge.toml", "config file")
|
flagConfig = flag.String("conf", "matterbridge.toml", "config file")
|
||||||
|
@ -27,7 +27,7 @@ UseTLS=false
|
|||||||
#OPTIONAL (default false)
|
#OPTIONAL (default false)
|
||||||
UseSASL=false
|
UseSASL=false
|
||||||
|
|
||||||
#Enable to not verify the certificate on your irc server. i
|
#Enable to not verify the certificate on your irc server.
|
||||||
#e.g. when using selfsigned certificates
|
#e.g. when using selfsigned certificates
|
||||||
#OPTIONAL (default false)
|
#OPTIONAL (default false)
|
||||||
SkipTLSVerify=true
|
SkipTLSVerify=true
|
||||||
|
Reference in New Issue
Block a user