mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-18 15:47:57 +01:00
[PM-11332] Prevent dead object error in Firefox due to timing issue (#10720)
* Prevent dead object error from race condition when closing the popup in Firefox * Add await to async call to resolve timing issue * Remove comment
This commit is contained in:
parent
6d89c0f157
commit
ed3ec8ef39
@ -436,9 +436,7 @@ export default class AutofillService implements AutofillServiceInterface {
|
|||||||
|
|
||||||
didAutofill = true;
|
didAutofill = true;
|
||||||
if (!options.skipLastUsed) {
|
if (!options.skipLastUsed) {
|
||||||
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
await this.cipherService.updateLastUsedDate(options.cipher.id);
|
||||||
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
||||||
this.cipherService.updateLastUsedDate(options.cipher.id);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
||||||
|
Loading…
Reference in New Issue
Block a user