Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tachibana-shin committed Mar 5, 2024
1 parent 9728ba9 commit 903020d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pages/phim/_season.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1768,6 +1768,7 @@ const episodesOpEnd = computedAsync<ShallowReactive<ListEpisodes> | 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)
Expand Down Expand Up @@ -1858,6 +1859,7 @@ const inoutroEpisode = computedAsync<ShallowReactive<InOutroEpisode> | 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)
Expand Down

0 comments on commit 903020d

Please sign in to comment.