1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 21:33:27 +00:00

[PM-22996] Failed to decrypt ciphers: TypeError: this.uriChecksum is null (#15355)

This commit is contained in:
SmithThe4th
2025-06-27 09:59:38 -04:00
committed by GitHub
parent 8ab44dd992
commit bfb71a3405

View File

@@ -97,8 +97,8 @@ export class LoginUri extends Domain {
*/
toSdkLoginUri(): SdkLoginUri {
return {
uri: this.uri.toJSON(),
uriChecksum: this.uriChecksum.toJSON(),
uri: this.uri?.toJSON(),
uriChecksum: this.uriChecksum?.toJSON(),
match: this.match,
};
}