mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
Ignore port when checking if on invidious instance
This commit is contained in:
parent
3175d7f8e9
commit
e8370121d5
2 changed files with 2 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit bfa12c9604246bf92f5934f40818de58c3811943
|
Subproject commit 569086c469b78db30dc797563a1399b520edfd08
|
|
@ -2388,7 +2388,7 @@ function hotkeyListener(e: KeyboardEvent): void {
|
||||||
* Adds the CSS to the page if needed. Required on optional sites with Chrome.
|
* Adds the CSS to the page if needed. Required on optional sites with Chrome.
|
||||||
*/
|
*/
|
||||||
function addCSS() {
|
function addCSS() {
|
||||||
if (!isFirefoxOrSafari() && Config.config.invidiousInstances.includes(new URL(document.URL).host)) {
|
if (!isFirefoxOrSafari() && Config.config.invidiousInstances.includes(new URL(document.URL).host.split(":")[0])) {
|
||||||
window.addEventListener("DOMContentLoaded", () => {
|
window.addEventListener("DOMContentLoaded", () => {
|
||||||
const head = document.getElementsByTagName("head")[0];
|
const head = document.getElementsByTagName("head")[0];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue