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

Add nil check for group update (telegram) (#2036)

This commit is contained in:
Joseph Mansy 2023-04-05 14:08:03 -07:00 committed by GitHub
parent 5bbe422161
commit 574f25337d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -264,8 +264,7 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
}
func (b *Btelegram) handleGroupUpdate(update tgbotapi.Update) {
msg := update.Message
if msg := update.Message; msg != nil {
switch {
case msg.NewChatMembers != nil:
b.handleUserJoin(update)
@ -273,6 +272,7 @@ func (b *Btelegram) handleGroupUpdate(update tgbotapi.Update) {
b.handleUserLeave(update)
}
}
}
func (b *Btelegram) handleUserJoin(update tgbotapi.Update) {
msg := update.Message