diff options
author | ManeraKai <manerakai@protonmail.com> | 2023-12-10 15:56:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-10 15:56:43 +0000 |
commit | 7951a084ba0aced8c0ac9a0884820e49444fa91e (patch) | |
tree | ac62837ae32a9180dbb8f4f8ff0b39bf8a6657c7 /src/assets/javascripts/services.js | |
parent | Added Priviblur https://github.com/libredirect/browser_extension/issues/867 (diff) | |
parent | Remove debug console.log statements (diff) | |
download | libredirect-7951a084ba0aced8c0ac9a0884820e49444fa91e.zip |
Merge pull request #870 from syeopite/remove-debug-statements
Remove debug console.log statements
Diffstat (limited to 'src/assets/javascripts/services.js')
-rw-r--r-- | src/assets/javascripts/services.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/assets/javascripts/services.js b/src/assets/javascripts/services.js index 4bcc7618..a9a87830 100644 --- a/src/assets/javascripts/services.js +++ b/src/assets/javascripts/services.js @@ -445,9 +445,7 @@ function redirect(url, type, initiator, forceRedirection, incognito) { return `${randomInstance}${url.pathname}${url.search}` } case "mikuInvidious": { - console.log("Hello?") if (url.hostname == "bilibili.com" || url.hostname == "www.bilibili.com" || url.hostname == 'b23.tv') { - console.log('wewe') return `${randomInstance}${url.pathname}${url.search}` } if (url.hostname == "space.bilibili.com") { @@ -500,7 +498,6 @@ function redirect(url, type, initiator, forceRedirection, incognito) { } case "quetre": { const regex = /([a-z]+)\.quora\.com/.exec(url.hostname) - console.log(regex) if (regex) { const lang = regex[1] url.searchParams.append("lang", lang) |