merged with fixes

This commit is contained in:
onysd 2026-09-09 02:49:30 +03:00
parent a9e758b712
commit 2f1818d656
176 changed files with 9000 additions and 907 deletions

View file

@ -173,7 +173,10 @@ func (s *MessageStore) DeliverLoginCodeMessage(ctx context.Context, req domain.L
if err != nil {
return domain.LoginCodeDeliveryResult{}, fmt.Errorf("create login code recipient box: %w", err)
}
msg := messageFromBoxRow(boxRow)
msg, err := messageFromBoxRow(boxRow)
if err != nil {
return domain.LoginCodeDeliveryResult{}, err
}
if err := qtx.UpsertInboxDialog(ctx, sqlcgen.UpsertInboxDialogParams{
UserID: req.UserID,