From f7afe243c7546661b0c109e7c477226d7eaffdd7 Mon Sep 17 00:00:00 2001 From: Hiram <> Date: Fri, 26 Apr 2024 23:40:41 +0800 Subject: [PATCH] fix ts error --- src/renderer/src/pages/film/Detail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/pages/film/Detail.vue b/src/renderer/src/pages/film/Detail.vue index 8e72d3ffc..c746f2a80 100644 --- a/src/renderer/src/pages/film/Detail.vue +++ b/src/renderer/src/pages/film/Detail.vue @@ -246,7 +246,7 @@ const fetchT3PlayUrlHelper = async (flag: string, id: string, flags: string[] = try { const playRes = await fetchT3PlayUrl(flag, id, flags); if (playRes?.parse === 0 && playRes?.url.indexOf('http://127.0.0.1:9978/proxy') > -1) { - const proxyRes = await t3RuleProxy(playRes.url); + const proxyRes: any = await t3RuleProxy(playRes.url); await setT3Proxy(proxyRes); }