another hack to deal with slightly different tag behavior

This commit is contained in:
idk
2019-11-26 23:26:33 -05:00
parent 4aed7e0db4
commit 5a2acc1c1c

View File

@@ -93,7 +93,12 @@ function proxyReadiness() {
console.log(this.responseText);
}
browser.history.onVisited.addListener(onVisited);
var gettingInfo = browser.runtime.getPlatformInfo();
gettingInfo.then(got => {
if (got.os != "android") {
browser.history.onVisited.addListener(onVisited);
}
});
function goHome() {
function gotProxyInfo(info) {