commit 574e6ce37ccf11fb15788937239acf79d76a8c20
parent 8f973c69c4b84f455634f03e931304a3babde0ee
Author: Florian Dold <florian.dold@gmail.com>
Date: Sat, 2 Nov 2019 00:24:18 +0100
don't do requestUpdateStatus on FF
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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) => {