summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/context/alert.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-webextension/src/context/alert.ts')
-rw-r--r--packages/taler-wallet-webextension/src/context/alert.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-webextension/src/context/alert.ts b/packages/taler-wallet-webextension/src/context/alert.ts
index 45fc9d9d9..36de7c7e4 100644
--- a/packages/taler-wallet-webextension/src/context/alert.ts
+++ b/packages/taler-wallet-webextension/src/context/alert.ts
@@ -222,7 +222,7 @@ function isWalletNotAvailable(i18n: InternationalizationAPI, detail: TalerErrorD
&& detail.lastError) {
const le = detail.lastError as TalerErrorDetail
if (le.code === TalerErrorCode.WALLET_DB_UNAVAILABLE) {
- if (platform.isFirefox()) {
+ if (platform.isFirefox() && platform.runningOnPrivateMode()) {
return i18n.str`Could not open the wallet database. Firefox is known to run into this problem under "permanent private mode".`
} else {
return i18n.str`Could not open the wallet database.`