Skip to content

Commit 1786934

Browse files
authored
Allow auth request to proceed when browserpass detatched window is closed #370 (#372)
1 parent 11f65ea commit 1786934

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ chrome.alarms.onAlarm.addListener(async (alarm) => {
172172
}
173173
} else if (alarm.name === "clearAuthRequest") {
174174
if (currentAuthRequest !== null) {
175-
resolveAuthRequest({ cancel: true }, currentAuthRequest.url);
175+
resolveAuthRequest({ cancel: false }, currentAuthRequest.url);
176176
}
177177
}
178178
});

0 commit comments

Comments
 (0)