1 Commits

Author SHA1 Message Date
7b9e2a8d29 Fixing bug where nil handler was called 2023-09-24 15:36:17 -04:00

View File

@ -182,9 +182,9 @@ func (r *PushSubscription) subscribeWithPrefix(prefix string, context context.Co
return return
} }
log.Println("Unable to handle GroupMe message type", contentType) log.Println("Unable to handle GroupMe message type", contentType)
} else {
handler(r, channel, authToken, content)
} }
handler(r, channel, authToken, content)
}) })
return nil return nil