mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 15:40:27 +00:00
Add nil check for group update (telegram) (#2036)
This commit is contained in:
parent
5bbe422161
commit
574f25337d
@ -264,14 +264,14 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (b *Btelegram) handleGroupUpdate(update tgbotapi.Update) {
|
func (b *Btelegram) handleGroupUpdate(update tgbotapi.Update) {
|
||||||
msg := update.Message
|
if msg := update.Message; msg != nil {
|
||||||
|
|
||||||
switch {
|
switch {
|
||||||
case msg.NewChatMembers != nil:
|
case msg.NewChatMembers != nil:
|
||||||
b.handleUserJoin(update)
|
b.handleUserJoin(update)
|
||||||
case msg.LeftChatMember != nil:
|
case msg.LeftChatMember != nil:
|
||||||
b.handleUserLeave(update)
|
b.handleUserLeave(update)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Btelegram) handleUserJoin(update tgbotapi.Update) {
|
func (b *Btelegram) handleUserJoin(update tgbotapi.Update) {
|
||||||
|
Loading…
Reference in New Issue
Block a user