From 863bb754e017a1565c8615c4516aa9d0bb1bf1a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9luchu?= Date: Mon, 1 Jun 2020 12:29:52 +0200 Subject: [PATCH] Fix nextEpisodeDate on Episodes MoreInfo --- src/utils/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/index.js b/src/utils/index.js index 80a6e36..dd8e763 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -60,7 +60,7 @@ const animeflvInfo = async(id) =>{ }); const AnimeThumbnailsId = anime_info_ids[0].split(',')[0].split('"')[1]; const animeId = id; - let nextEpisodeDate = anime_info_ids[0][3] || null + let nextEpisodeDate = anime_info_ids[0].split('"')[7] || null const amimeTempList = []; for(const [key , value] of Object.entries(anime_eps_data)){ let episode = anime_eps_data[key].map(x => x[0]);