commit 943e86b2bd37e01b1b91696e154cfe6a55a8f459
parent c0685912393070dfd716c1e79914dee6e7d11600
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date: Tue, 29 Oct 2024 13:27:02 +0100
fix: use YouTube directly instead
invidious-redirector appears to be highly
unreliable. Due to this, unfortunately, serĉi now
falls back to the direct youtube URL. Users /
clients may use their own redirection techniques
instead.
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/config/config.php b/config/config.php
@@ -589,12 +589,12 @@ $searches = array(
"description" => "An answer engine developed by Wolfram Research, that answers factual queries by computing answers from externally sourced data"
),
"youtube" => array(
- "name" => "YouTube / Invidious",
- "website" => "https://video.fosswelt.org",
- "query" => "https://video.fosswelt.org/results?search_query=%s",
+ "name" => "YouTube",
+ "website" => "https://www.youtube.com",
+ "query" => "https://www.youtube.com/results?search_query=%s",
"categories" => array("vid"),
- "keywords" => array("youtube", "invidious", "yt", "iv"),
- "description" => "The biggest online video sharing platform world-wide, owned by Google. The Invidious-Redirector is used here to offer a more privacy-frendly webfrontend."
+ "keywords" => array("youtube", "yt"),
+ "description" => "The biggest online video sharing platform world-wide, owned by Google."
),
);