From 09a0be1502ae00b4919f5914cf32ab98906c4b55 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 18 Apr 2020 19:19:53 -0400 Subject: [PATCH] Correct Timezone in Anime Airing --- commands/events/anime-airing.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/events/anime-airing.js b/commands/events/anime-airing.js index 229fa1ef..7747fbd2 100644 --- a/commands/events/anime-airing.js +++ b/commands/events/anime-airing.js @@ -62,8 +62,8 @@ module.exports = class AnimeAiringCommand extends Command { .post('https://graphql.anilist.co/') .send({ variables: { - greater: Number.parseInt(today().getTime() / 1000, 10), - lower: Number.parseInt(tomorrow().getTime() / 1000, 10) + greater: Number.parseInt(today(9).getTime() / 1000, 10), + lower: Number.parseInt(tomorrow(9).getTime() / 1000, 10) }, query: airingGraphQL });