diff options
| author | Fuwn <[email protected]> | 2026-03-01 16:15:37 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-01 16:16:50 -0800 |
| commit | 5e930243be42cb79dc72ee66f12578074e670120 (patch) | |
| tree | b11e4504c9ee66c9ed33217d8339f8e61cabcf57 /src/lib/Media | |
| parent | chore(biome): enable svelte linting (diff) | |
| download | due.moe-5e930243be42cb79dc72ee66f12578074e670120.tar.xz due.moe-5e930243be42cb79dc72ee66f12578074e670120.zip | |
chore(biome): re-enable noImplicitAnyLet rule
Diffstat (limited to 'src/lib/Media')
| -rw-r--r-- | src/lib/Media/Anime/Airing/Subtitled/match.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Media/Anime/Airing/Subtitled/match.ts b/src/lib/Media/Anime/Airing/Subtitled/match.ts index e83c30b6..0570b7f9 100644 --- a/src/lib/Media/Anime/Airing/Subtitled/match.ts +++ b/src/lib/Media/Anime/Airing/Subtitled/match.ts @@ -463,7 +463,7 @@ export const injectAiringTime = (anime: Media, subsPlease: SubsPlease | null) => // ? Math.round((airingAt - Date.now() / 1000) * 100) / 100 // : undefined; const nativeTime = new Date(airingAt ? airingAt * 1000 : 0); - let untilAiring; + let untilAiring: number | undefined; let time = new Date(airingAt ? airingAt * 1000 : 0); let nextEpisode = anime.nextAiringEpisode?.episode || 0; |