From d864bc8a4e6e3430f336197dfec34834b9366910 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 17 Oct 2025 08:31:05 +0000 Subject: [PATCH] hanime bugfix --- src/providers/hanime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/hanime.rs b/src/providers/hanime.rs index fbaf737..27d6d7d 100644 --- a/src/providers/hanime.rs +++ b/src/providers/hanime.rs @@ -132,7 +132,7 @@ impl HanimeProvider { drop(conn); let id = hit.id.to_string(); let title = hit.name; - let thumb = hit.cover_url.replace("hanime-cdn.com", "hottub.spacemoehre.de"); + let thumb = hit.cover_url.replace("https://hanime-cdn.com", "https://hottub.spacemoehre.de/proxy/hanime-cdn"); let duration = (hit.duration_in_ms / 1000) as u32; // Convert ms to seconds let channel = "hanime".to_string(); // Placeholder, adjust as needed match db_result {