diff options
Diffstat (limited to 'server/lib/sync-channel.ts')
-rw-r--r-- | server/lib/sync-channel.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/lib/sync-channel.ts b/server/lib/sync-channel.ts index 3a81daac0..6cd1fc26d 100644 --- a/server/lib/sync-channel.ts +++ b/server/lib/sync-channel.ts | |||
@@ -93,7 +93,10 @@ async function skipImport (channel: MChannel, targetUrl: string, onlyAfter?: Dat | |||
93 | 93 | ||
94 | const videoInfo = await youtubeDL.getInfoForDownload() | 94 | const videoInfo = await youtubeDL.getInfoForDownload() |
95 | 95 | ||
96 | if (videoInfo.originallyPublishedAt.getTime() < onlyAfter.getTime()) { | 96 | const onlyAfterWithoutTime = new Date(onlyAfter) |
97 | onlyAfterWithoutTime.setHours(0, 0, 0) | ||
98 | |||
99 | if (videoInfo.originallyPublishedAtWithoutTime.getTime() >= onlyAfterWithoutTime.getTime()) { | ||
97 | return true | 100 | return true |
98 | } | 101 | } |
99 | } | 102 | } |