From 27a3dbf419d7de7040c05277575c640b77547721 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 24 May 2024 08:00:05 -0700 Subject: fix(match): simple native time comparison --- src/lib/Media/Anime/Airing/Subtitled/match.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/Media/Anime/Airing/Subtitled/match.ts b/src/lib/Media/Anime/Airing/Subtitled/match.ts index b5cdc7d7..f16918e2 100644 --- a/src/lib/Media/Anime/Airing/Subtitled/match.ts +++ b/src/lib/Media/Anime/Airing/Subtitled/match.ts @@ -181,7 +181,7 @@ export const injectAiringTime = (anime: Media, subsPlease: SubsPlease | null) => } } - if (now >= nativeTime && now < time) { + if (nativeTime > time) { nextEpisode -= 1; } -- cgit v1.2.3