Skip to content

Commit

Permalink
fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiram committed Apr 26, 2024
1 parent 57208ff commit f7afe24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/pages/film/Detail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit f7afe24

Please sign in to comment.