From 903020d626f20a95b766bc77a4395459e644fc82 Mon Sep 17 00:00:00 2001 From: Tachibana Shin Date: Tue, 5 Mar 2024 05:01:31 +0000 Subject: [PATCH] chore: lint --- src/pages/phim/_season.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/phim/_season.vue b/src/pages/phim/_season.vue index 2ec58960..dd76580f 100644 --- a/src/pages/phim/_season.vue +++ b/src/pages/phim/_season.vue @@ -1768,6 +1768,7 @@ const episodesOpEnd = computedAsync | null>( } else results = shallowReactive(data) }), get(`episodes_opend:${realId}`).then((text: string) => { + // eslint-disable-next-line functional/no-throw-statement if (!text) throw new Error("not_found_on_idb") const data = JSON.parse(text) @@ -1858,6 +1859,7 @@ const inoutroEpisode = computedAsync | null>( } else results = shallowReactive(data) }), get(`inoutro:${id}`).then((text: string) => { + // eslint-disable-next-line functional/no-throw-statement if (!text) throw new Error("not_found_on_idb") const data = JSON.parse(text)