mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +00:00
Get full cipher details when update cipher notification is received (#3063)
This commit is contained in:
@@ -198,7 +198,7 @@ export class SyncService implements SyncServiceAbstraction {
|
||||
}
|
||||
|
||||
if (shouldUpdate) {
|
||||
const remoteCipher = await this.apiService.getCipher(notification.id);
|
||||
const remoteCipher = await this.apiService.getFullCipherDetails(notification.id);
|
||||
if (remoteCipher != null) {
|
||||
await this.cipherService.upsert(new CipherData(remoteCipher));
|
||||
this.messagingService.send("syncedUpsertedCipher", { cipherId: notification.id });
|
||||
|
||||
Reference in New Issue
Block a user