From 87cecdafec498e08a19913732a0857b623faa934 Mon Sep 17 00:00:00 2001 From: capitanwesler Date: Tue, 13 Apr 2021 17:12:12 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fixing=20format=20date?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/util.ts b/src/utils/util.ts index da63c54..8115108 100644 --- a/src/utils/util.ts +++ b/src/utils/util.ts @@ -637,7 +637,7 @@ export const monoschinosInfo = async ( yyyy = broadCastDate.getFullYear(); episodeList.push({ - nextEpisodeDate: `${yyyy}/${mm}/${dd}`, + nextEpisodeDate: `${yyyy}-${mm}-${dd}`, }); } }