diff options
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/cacheMangaMinutes.ts | 2 | ||||
| -rw-r--r-- | src/stores/roundDownChapters.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/cacheMangaMinutes.ts b/src/stores/cacheMangaMinutes.ts index f4c714ad..6da460b2 100644 --- a/src/stores/cacheMangaMinutes.ts +++ b/src/stores/cacheMangaMinutes.ts @@ -2,7 +2,7 @@ import { browser } from '$app/environment'; import { writable } from 'svelte/store'; const cacheMangaMinutes = writable<string>( - browser ? localStorage.getItem('cacheMangaMinutes') ?? '120' : '120' + browser ? localStorage.getItem('cacheMangaMinutes') ?? '60' : '60' ); cacheMangaMinutes.subscribe((value) => { diff --git a/src/stores/roundDownChapters.ts b/src/stores/roundDownChapters.ts index f4ac3513..8cbdbdc1 100644 --- a/src/stores/roundDownChapters.ts +++ b/src/stores/roundDownChapters.ts @@ -2,7 +2,7 @@ import { browser } from '$app/environment'; import { writable } from 'svelte/store'; const roundDownChapters = writable<string>( - browser ? localStorage.getItem('roundDownChapters') ?? 'false' : 'false' + browser ? localStorage.getItem('roundDownChapters') ?? 'true' : 'true' ); roundDownChapters.subscribe((value) => { |