From 5d7f581a867de5513b0423518f7c425ceab8ff95 Mon Sep 17 00:00:00 2001 From: redbinder0526 Date: Tue, 5 May 2026 08:19:42 +0200 Subject: [PATCH] we will probably switch to our own renderer but kitten's server is borked rn --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 273db26..bf93980 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,7 +4,7 @@ use rocket::State; use reqwest::Client; use bytes::Bytes; -static MII_RENDERER_URL: &str = "https://mii-server.cubexmine.dev"; +static MII_RENDERER_URL: &str = "https://mii-unsecure.ariankordi.net/"; async fn request_mii_render(client: &State, pid: i32, path: &str) -> Option { let req_str = format!("{MII_RENDERER_URL}/{pid}/{path}");