From 5794f24ec013c4563726fc39834af853ab80ede2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Arda=20Kavakc=C4=B1?= Date: Thu, 2 Dec 2021 11:32:48 +0300 Subject: [PATCH] Chang of Invidious instance: - Redirection was not working so I had to change it again, sorry for the frequent updates --- privacy-redirector.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/privacy-redirector.js b/privacy-redirector.js index 643d972..d818e88 100644 --- a/privacy-redirector.js +++ b/privacy-redirector.js @@ -4,7 +4,7 @@ // @downloadURL https://raw.githubusercontent.com/dybdeskarphet/privacy-redirector/main/privacy-redirector.js // @updateURL https://raw.githubusercontent.com/dybdeskarphet/privacy-redirector/main/privacy-redirector.js // @license AGPLv3 -// @version 1.0.7 +// @version 1.0.8 // @description Redirect social media platforms to their privacy respecting frontends // @description:tr Sosyal medya platformlarını, gizliliğe saygı duyan önyüzlerine yönlendirir // @run-at document-start @@ -46,11 +46,11 @@ function redirectReddit() { function redirectYoutube() { if (window.location.pathname.indexOf("results?search_query") == 1) { window.stop(); - location.hostname = "invidious.snopyta.org"; + location.hostname = "vid.puffyan.us"; window.location.replace("results?search_query", "search?q"); } else { window.stop(); - location.hostname = "invidious.snopyta.org"; + location.hostname = "vid.puffyan.us"; } }