aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-11-02 00:24:18 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-11-02 00:24:18 +0100
commit574e6ce37ccf11fb15788937239acf79d76a8c20 (patch)
tree85cc7ae0f18df845392d020060e58bac292ccb8f /src
parent8f973c69c4b84f455634f03e931304a3babde0ee (diff)
downloadwallet-core-574e6ce37ccf11fb15788937239acf79d76a8c20.tar.xz
don't do requestUpdateStatus on FF
Diffstat (limited to 'src')
-rw-r--r--src/wallet.ts2
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) => {