2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-06-06 08:17:27 +02:00

Merge branch 'soru/fix-uia-request' into 'main'

fix: small fox for uia request

See merge request 
This commit is contained in:
Krille Fear 2021-10-26 16:34:03 +00:00
commit 1e8d4fc43f

@ -118,7 +118,7 @@ class UiaRequestManager {
}
} catch (e, s) {
Logs().e('Error while background UIA', e, s);
return uiaRequest.cancel(e);
return uiaRequest.cancel(e is Exception ? e : Exception(e));
}
}
}