make prettier

This commit is contained in:
idk
2021-10-01 14:16:15 -04:00
parent 97146391e8
commit f575f95ee2
15 changed files with 871 additions and 867 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);