diff options
Diffstat (limited to 'src/wallet.ts')
-rw-r--r-- | src/wallet.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.ts b/src/wallet.ts index 244a4f227..c73af9062 100644 --- a/src/wallet.ts +++ b/src/wallet.ts @@ -1931,7 +1931,7 @@ export class Wallet { console.warn( `wallet version ${WALLET_PROTOCOL_VERSION} might be outdated (exchange has ${exchangeInfo.protocolVersion}), checking for updates`, ); - if (!isFirefox()) { + if (isFirefox()) { console.log("skipping update check on Firefox") } else { chrome.runtime.requestUpdateCheck((status, details) => { |