diff options
| author | Fuwn <[email protected]> | 2024-03-30 01:20:46 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-03-30 01:20:46 -0700 |
| commit | ec0e0bfd2ba373ccbba4fffcf04d9338ad24aa72 (patch) | |
| tree | a82787a5979aa89d4f640ed0b22b110e8690c8f1 /src/lib/Tools | |
| parent | feat(sequelspy): sort by start date (diff) | |
| download | due.moe-ec0e0bfd2ba373ccbba4fffcf04d9338ad24aa72.tar.xz due.moe-ec0e0bfd2ba373ccbba4fffcf04d9338ad24aa72.zip | |
feat(sequelspy): show days instead of weeks for long
Diffstat (limited to 'src/lib/Tools')
| -rw-r--r-- | src/lib/Tools/SequelSpy.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Tools/SequelSpy.svelte b/src/lib/Tools/SequelSpy.svelte index 93ae7f47..94a7be62 100644 --- a/src/lib/Tools/SequelSpy.svelte +++ b/src/lib/Tools/SequelSpy.svelte @@ -44,7 +44,7 @@ onMount(() => clearAllParameters(['year', 'season'])); const prequelAiringTime = (prequel: MediaPrequel) => - airingTime(prequel as unknown as Media, null); + airingTime(prequel as unknown as Media, null, false, true); </script> {#if user === undefined || $identity.id === -2} |