chore: Add more debugging logs to debug key decrypt issues

This commit is contained in:
Sorunome 2020-09-07 15:42:24 +02:00
parent 3e44b0e504
commit 20d3ea91dc
No known key found for this signature in database
GPG Key ID: B19471D07FC9BE9C
1 changed files with 6 additions and 2 deletions

View File

@ -142,11 +142,15 @@ class _SettingsState extends State<Settings> {
try {
handle.unlock(recoveryKey: str);
valid = true;
} catch (_) {
} catch (e, s) {
debugPrint('Couldn\'t use recovery key: ' + e.toString());
debugPrint(s.toString());
try {
handle.unlock(passphrase: str);
valid = true;
} catch (_) {
} catch (e, s) {
debugPrint('Couldn\'t use recovery passphrase: ' + e.toString());
debugPrint(s.toString());
valid = false;
}
}