5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00

Use default nick if none specified (irc). Fixes #785

This commit is contained in:
Wim 2019-04-05 00:17:38 +02:00
parent 01d0a9f412
commit cdf33e5748

View File

@ -231,7 +231,7 @@ func (b *Birc) getClient() (*girc.Client, error) {
// fix strict user handling of girc
user := b.GetString("Nick")
for !girc.IsValidUser(user) {
if len(user) == 1 {
if len(user) == 1 || len(user) == 0 {
user = "matterbridge"
break
}