fix one value

This commit is contained in:
Aine 2022-08-30 16:13:10 +03:00
parent cec2761911
commit 0c74ae02fb
No known key found for this signature in database
GPG key ID: 34969C908CCA2804

View file

@ -32,7 +32,7 @@ func (s botSettings) Users() []string {
if strings.Contains(value, " ") {
return strings.Split(value, " ")
}
return []string{}
return []string{value}
}
func (b *Bot) initBotUsers(users []string) error {