diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/List/Manga/CleanMangaList.svelte | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/List/Manga/CleanMangaList.svelte b/src/lib/List/Manga/CleanMangaList.svelte index 2cd95c04..8c0b8127 100644 --- a/src/lib/List/Manga/CleanMangaList.svelte +++ b/src/lib/List/Manga/CleanMangaList.svelte @@ -14,7 +14,6 @@ type HoverCoverResponse } from '$lib/Media/Cover/hoverCover'; import { onMount } from 'svelte'; - import proxy from '$lib/Utility/proxy'; import root from '$lib/Utility/root'; import locale from '$stores/locale'; import Skeleton from '$lib/Loading/Skeleton.svelte'; @@ -38,7 +37,7 @@ let serviceStatusResponse: Promise<Response>; onMount(() => { - serviceStatusResponse = fetch(proxy('https://mangadex.org')); + serviceStatusResponse = fetch('https://api.mangadex.org/ping'); if (browser) localStorage.setItem(`last${due ? '' : 'Completed'}MangaListLength`, media.length.toString()); |