mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
json extension prop is an array (#6866)
This commit is contained in:
@@ -142,9 +142,11 @@ export class Vault {
|
|||||||
);
|
);
|
||||||
if (response.status === HttpStatusCode.Ok) {
|
if (response.status === HttpStatusCode.Ok) {
|
||||||
const json = await response.json();
|
const json = await response.json();
|
||||||
const k1 = json?.extensions?.LastPassK1 as string;
|
if (json?.extensions != null && json.extensions.length > 0) {
|
||||||
if (k1 != null) {
|
const k1 = json.extensions[0].LastPassK1 as string;
|
||||||
return Utils.fromB64ToArray(k1);
|
if (k1 != null) {
|
||||||
|
return Utils.fromB64ToArray(k1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Reference in New Issue
Block a user