From 6a66e0aa1f67d0ff4ba5edf0701658fb7c8cd5eb Mon Sep 17 00:00:00 2001 From: stratumadev Date: Wed, 1 Oct 2025 02:32:31 +0200 Subject: [PATCH] fixed eslint --- hidive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hidive.ts b/hidive.ts index a0a89ed..156fd90 100644 --- a/hidive.ts +++ b/hidive.ts @@ -1075,7 +1075,7 @@ export default class Hidive implements ServiceClass { } sxData.language = subLang; if (options.dlsubs.includes('all') || options.dlsubs.includes(subLang.locale)) { - let getVttContent = await this.req.getData(sub.url); + const getVttContent = await this.req.getData(sub.url); if (getVttContent.ok && getVttContent.res) { let sBody = await getVttContent.res.text();