diff options
Diffstat (limited to 'src/lib/Media/anime.ts')
| -rw-r--r-- | src/lib/Media/anime.ts | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/Media/anime.ts b/src/lib/Media/anime.ts index baef7e14..01bc3eeb 100644 --- a/src/lib/Media/anime.ts +++ b/src/lib/Media/anime.ts @@ -35,25 +35,25 @@ export const airingTime = (anime: Media, upcoming = false) => { if (untilAiring !== undefined) { let minutes = untilAiring / 60; - let few = true; + const few = true; if (minutes >= 30) { hours = minutes / 60; if (hours >= 24) { - let weeks = Math.floor(Math.floor(hours / 24) / 7); + // let weeks = Math.floor(Math.floor(hours / 24) / 7); - few = false; + // few = false; - if (weeks >= 1) { - weeks = Math.round(weeks); + // if (weeks >= 1) { + // weeks = Math.round(weeks); - timeFrame = `${weeks} week${weeks === 1 ? '' : 's'}`; - } else { - const days = Math.round(Math.floor(hours / 24)); + // timeFrame = `${weeks} week${weeks === 1 ? '' : 's'}`; + // } else { + const days = Math.round(Math.floor(hours / 24)); - timeFrame = `${days} day${days === 1 ? '' : 's'}`; - } + timeFrame = `${days} day${days === 1 ? '' : 's'}`; + // } } else { hours = Math.round(hours); |