From 242d5763d451eed2402be7afde50cd9fa0d6bc79 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Tue, 9 Dec 2025 16:23:21 +0100 Subject: fix cache name escape bugs --- import/src/trakt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'import/src/trakt.rs') diff --git a/import/src/trakt.rs b/import/src/trakt.rs index a241725..270c589 100644 --- a/import/src/trakt.rs +++ b/import/src/trakt.rs @@ -101,7 +101,7 @@ impl Trakt { } pub fn show_seasons(&self, id: u64, rt: &Handle) -> Result>> { - cache_memory(&format!("ext/trakt/seasons/{id}"), move || { + cache_memory(&format!("ext/trakt/seasons/{id}.json"), move || { rt.block_on(async { info!("trakt seasons {id:?}"); let url = format!("https://api.trakt.tv/shows/{id}/seasons?extended=full"); -- cgit v1.3