1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

revert isValidVaultReferrer for vault messages - blocking self hosting users because their the web vault hostnames are unknown (#17828)

This commit is contained in:
Nick Krantz
2025-12-05 14:14:10 -06:00
committed by GitHub
parent 6fc6ed88b5
commit 3f4905565e

View File

@@ -294,19 +294,11 @@ export default class RuntimeBackground {
await this.openPopup();
break;
case VaultMessages.OpenAtRiskPasswords: {
if (await this.shouldRejectManyOriginMessage(msg)) {
return;
}
await this.main.openAtRisksPasswordsPage();
this.announcePopupOpen();
break;
}
case VaultMessages.OpenBrowserExtensionToUrl: {
if (await this.shouldRejectManyOriginMessage(msg)) {
return;
}
await this.main.openTheExtensionToPage(msg.url);
this.announcePopupOpen();
break;