mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-11-12 13:01:45 +01:00
Add missing return
This commit is contained in:
parent
25c77b0fb5
commit
d4318d54a4
1 changed files with 1 additions and 0 deletions
|
@ -554,6 +554,7 @@ func (portal *Portal) handleUndecryptableMessage(source *User, evt *events.Undec
|
||||||
resp, err := portal.sendMessage(intent, event.EventMessage, &content, nil, evt.Info.Timestamp.UnixMilli())
|
resp, err := portal.sendMessage(intent, event.EventMessage, &content, nil, evt.Info.Timestamp.UnixMilli())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
portal.log.Errorln("Failed to send decryption error of %s to Matrix: %v", evt.Info.ID, err)
|
portal.log.Errorln("Failed to send decryption error of %s to Matrix: %v", evt.Info.ID, err)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
portal.finishHandling(nil, &evt.Info, resp.EventID, database.MsgUnknown, database.MsgErrDecryptionFailed)
|
portal.finishHandling(nil, &evt.Info, resp.EventID, database.MsgUnknown, database.MsgErrDecryptionFailed)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue