mirror of
https://github.com/ente-io/ente.git
synced 2025-08-05 05:24:26 +00:00
Fix: Handle null account name during bitwarden import
This commit is contained in:
parent
4e45867994
commit
11304d9093
@ -109,8 +109,8 @@ Future<int?> _processBitwardenExportFile(
|
||||
Code.steamDigits,
|
||||
);
|
||||
} else {
|
||||
var issuer = item['name'];
|
||||
var account = item['login']['username'];
|
||||
var issuer = item['name'] ?? '';
|
||||
var account = item['login']['username'] ?? '';
|
||||
code = Code.fromAccountAndSecret(
|
||||
Type.totp,
|
||||
account,
|
||||
|
Loading…
x
Reference in New Issue
Block a user