From e30cc3795166a372876969fd83b813472043b48b Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 23 Jan 2026 21:26:36 -0800 Subject: fix: Add null guards and improve error messaging for user lookups --- src/lib/List/Manga/MangaListTemplate.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/List') diff --git a/src/lib/List/Manga/MangaListTemplate.svelte b/src/lib/List/Manga/MangaListTemplate.svelte index 3fee9f6a..16665d56 100644 --- a/src/lib/List/Manga/MangaListTemplate.svelte +++ b/src/lib/List/Manga/MangaListTemplate.svelte @@ -61,7 +61,7 @@ `last${due ? '' : 'Completed'}MangaListLength` )) as number | null; - if (lastStoredList) lastListSize = parseInt(lastStoredList); + if (lastStoredList) lastListSize = parseInt(String(lastStoredList)); } startTime = performance.now(); -- cgit v1.2.3