diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-11-02 00:24:18 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-11-02 00:24:18 +0100 |
commit | 574e6ce37ccf11fb15788937239acf79d76a8c20 (patch) | |
tree | 85cc7ae0f18df845392d020060e58bac292ccb8f /src/wallet.ts | |
parent | 8f973c69c4b84f455634f03e931304a3babde0ee (diff) |
don't do requestUpdateStatus on FF
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) => { |