mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-13 21:19:12 +08:00
Update jslib (#1895)
* Update jslib * Update jslib * Revert `isDesktopClient`
This commit is contained in:
parent
81a6cc092e
commit
a54ce615c8
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit fdc6f7b1d234c72724db47cbea6c94bff7ec0106
|
||||
Subproject commit 1f83c3c1ba14d2cdbc319ac060a08cc7c0911b5c
|
||||
@ -19,6 +19,10 @@ export default class BrowserStorageService implements StorageService {
|
||||
});
|
||||
}
|
||||
|
||||
async has(key: string): Promise<boolean> {
|
||||
return this.get(key) != null;
|
||||
}
|
||||
|
||||
async save(key: string, obj: any): Promise<any> {
|
||||
if (obj == null) {
|
||||
// Fix safari not liking null in set
|
||||
|
||||
Loading…
Reference in New Issue
Block a user