From b47de9dbabdaca4b7b672fc67ce96e4ab097626c Mon Sep 17 00:00:00 2001 From: Larsen Vallecillo Date: Thu, 28 Jul 2022 18:19:29 -0500 Subject: [PATCH] Change instance again --- wiimc/index.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wiimc/index.cgi b/wiimc/index.cgi index a1554c6..d4fa550 100644 --- a/wiimc/index.cgi +++ b/wiimc/index.cgi @@ -8,11 +8,11 @@ import json form = FieldStorage() if "q" in form.keys(): - api = requests.get("https://y.com.sb/api/v1/search?q=" + form["q"].value).json() + api = requests.get("https://yt.artemislena.eu/api/v1/search?q=" + form["q"].value).json() elif "trending" in form.keys(): - api = requests.get("https://y.com.sb/api/v1/trending").json() + api = requests.get("https://yt.artemislena.eu/api/v1/trending").json() else: - api = requests.get("https://y.com.sb/api/v1/popular").json() + api = requests.get("https://yt.artemislena.eu/api/v1/popular").json() print("Content-Type: text/plain;charset=UTF-8;\n");