Skip to content

Commit fcdaa63

Browse files
committed
fix: retry export id
1 parent d96213d commit fcdaa63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

injected/src/features/autofill-password-import.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ export default class AutofillImport extends ContentFeature {
592592
async findExportId() {
593593
const panels = document.querySelectorAll(this.tabPanelSelector);
594594
const exportPanel = panels[panels.length - 1];
595-
return await withExponentialBackoff(() => exportPanel.querySelector('div[data-archive-id]')?.getAttribute('data-archive-id'));
595+
return await this.runWithRetry(() => exportPanel.querySelector('div[data-archive-id]')?.getAttribute('data-archive-id'), 8, 100);
596596
}
597597

598598
async storeExportId() {

0 commit comments

Comments
 (0)