diff --git a/src/pages/phim/_season.vue b/src/pages/phim/_season.vue index 982cdb63..32eb3074 100644 --- a/src/pages/phim/_season.vue +++ b/src/pages/phim/_season.vue @@ -1765,7 +1765,7 @@ const episodesOpEnd = computedAsync | null>( Object.assign(results, data) } else results = shallowReactive(data) }), - getDataIDB(`episodes_opend:${realId}`).then((text) => { + get(`episodes_opend:${realId}`).then((text: string) => { if (!text) throw new Error("not_found_on_idb") const data = JSON.parse(text) @@ -1853,7 +1853,7 @@ const inoutroEpisode = computedAsync | null>( Object.assign(results, data) } else results = shallowReactive(data) }), - getDataIDB(`inoutro:${id}`).then((text) => { + get(`inoutro:${id}`).then((text: string) => { if (!text) throw new Error("not_found_on_idb") const data = JSON.parse(text)