mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-22 15:10:28 +00:00
Reset variables each loop (telegram). Closes #181
This commit is contained in:
parent
c791423dd5
commit
9bcd131e66
@ -76,11 +76,11 @@ func (b *Btelegram) Send(msg config.Message) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
|
func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
|
||||||
username := ""
|
|
||||||
text := ""
|
|
||||||
channel := ""
|
|
||||||
for update := range updates {
|
for update := range updates {
|
||||||
var message *tgbotapi.Message
|
var message *tgbotapi.Message
|
||||||
|
username := ""
|
||||||
|
channel := ""
|
||||||
|
text := ""
|
||||||
// handle channels
|
// handle channels
|
||||||
if update.ChannelPost != nil {
|
if update.ChannelPost != nil {
|
||||||
message = update.ChannelPost
|
message = update.ChannelPost
|
||||||
|
Loading…
Reference in New Issue
Block a user