don't do requestUpdateStatus on FF

This commit is contained in:
Florian Dold 2019-11-02 00:24:18 +01:00
parent 8f973c69c4
commit 574e6ce37c
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -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) => {