Try to mitigate #290 by disabling 'hot' updates

This commit is contained in:
Oliver Blanthorn 2018-05-09 10:48:14 +01:00
parent 6ed334967f
commit 0da814c71e
No known key found for this signature in database
GPG key ID: 2BB8C36BB504BFF3

View file

@ -76,3 +76,6 @@ browser.storage.onChanged.addListener((changes, areaname) => {
// browser.webRequest.onHeadersReceived.removeListener(cspListener)
}
})
// Prevent Tridactyl from being updated while it is running in the hope of fixing #290
browser.runtime.onUpdateAvailable.addListener(_ => {})