Fix formatting directives

This commit is contained in:
Neil Alexander 2020-10-14 16:29:47 +01:00
parent 0cf330cb2d
commit b21cae4956
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -295,7 +295,7 @@ func (t *txnReq) processEDUs(ctx context.Context) {
continue
}
if domain != t.Origin {
util.GetLogger(ctx).Warnf("Dropping typing event where sender domain (%d) doesn't match origin (%d)", domain, t.Origin)
util.GetLogger(ctx).Warnf("Dropping typing event where sender domain (%q) doesn't match origin (%q)", domain, t.Origin)
continue
}
if err := eduserverAPI.SendTyping(ctx, t.eduAPI, typingPayload.UserID, typingPayload.RoomID, typingPayload.Typing, 30*1000); err != nil {