fmt and resubmit

This commit is contained in:
idk
2021-10-30 10:08:09 -04:00
parent 7e1428310b
commit b84d8945aa
24 changed files with 1017 additions and 1017 deletions

View File

@ -1,7 +1,7 @@
browser.runtime.onMessage.addListener((request) => {
var response = 'no-alt-location';
var response = "no-alt-location";
console.log(request);
if (request.req === 'i2p-location') {
if (request.req === "i2p-location") {
var tag = document.querySelector('meta[http-equiv="i2p-location"]');
if (tag != undefined) {
console.log(tag);
@ -13,7 +13,7 @@ browser.runtime.onMessage.addListener((request) => {
if (tag) response = tag.content;
}
}
if (request.req === 'i2p-torrentlocation') {
if (request.req === "i2p-torrentlocation") {
var tag = document.querySelector('meta[http-equiv="i2p-torrentlocation"]');
if (tag != undefined) {
console.log(tag);