Use nick as username and realname if they are missing
This commit is contained in:
parent
8f8adc37e7
commit
9806d6c12f
@ -63,6 +63,13 @@ func connectIRC(server storage.Server, session *Session) *irc.Client {
|
|||||||
address = net.JoinHostPort(server.Host, server.Port)
|
address = net.JoinHostPort(server.Host, server.Port)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if i.Username == "" {
|
||||||
|
i.Username = server.Nick
|
||||||
|
}
|
||||||
|
if i.Realname == "" {
|
||||||
|
i.Realname = server.Nick
|
||||||
|
}
|
||||||
|
|
||||||
if server.Password == "" &&
|
if server.Password == "" &&
|
||||||
viper.GetString("defaults.password") != "" &&
|
viper.GetString("defaults.password") != "" &&
|
||||||
address == viper.GetString("defaults.address") {
|
address == viper.GetString("defaults.address") {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user