handletelegram: don't return errors from message converter

This commit is contained in:
Tulir Asokan
2025-12-03 16:49:29 +02:00
parent 35c161185c
commit fed5752f38
9 changed files with 182 additions and 183 deletions
+1 -1
View File
@@ -305,7 +305,7 @@ func (t *TelegramClient) FetchMessages(ctx context.Context, fetchParams bridgev2
if !ok {
continue
}
converted, err := t.convertToMatrixWithRefetch(ctx, portal, intent, message)
converted, err := t.convertToMatrix(ctx, portal, intent, message)
if err != nil {
return nil, err
}