mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 05:20:25 +00:00
Fix possible crash on nil (discord)
This commit is contained in:
parent
c5dfe40326
commit
dd3c572256
@ -158,12 +158,14 @@ func (b *bdiscord) getNick(user *discordgo.User) string {
|
|||||||
b.Lock()
|
b.Lock()
|
||||||
defer b.Unlock()
|
defer b.Unlock()
|
||||||
if _, ok := b.userMemberMap[user.ID]; ok {
|
if _, ok := b.userMemberMap[user.ID]; ok {
|
||||||
if b.userMemberMap[user.ID].Nick != "" {
|
if b.userMemberMap[user.ID] != nil {
|
||||||
// only return if nick is set
|
if b.userMemberMap[user.ID].Nick != "" {
|
||||||
return b.userMemberMap[user.ID].Nick
|
// only return if nick is set
|
||||||
|
return b.userMemberMap[user.ID].Nick
|
||||||
|
}
|
||||||
|
// otherwise return username
|
||||||
|
return user.Username
|
||||||
}
|
}
|
||||||
// otherwise return username
|
|
||||||
return user.Username
|
|
||||||
}
|
}
|
||||||
// if we didn't find nick, search for it
|
// if we didn't find nick, search for it
|
||||||
b.userMemberMap[user.ID], err = b.c.GuildMember(b.guildID, user.ID)
|
b.userMemberMap[user.ID], err = b.c.GuildMember(b.guildID, user.ID)
|
||||||
|
Loading…
Reference in New Issue
Block a user