From f6e525d41a6bf5c344f06d5340c57a635a532c49 Mon Sep 17 00:00:00 2001 From: Antonino Date: Sat, 19 Oct 2024 23:19:09 +0200 Subject: [PATCH] fix fetch modpack url --- src/service/api.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/service/api.tsx b/src/service/api.tsx index 07d0c56..a1e1458 100644 --- a/src/service/api.tsx +++ b/src/service/api.tsx @@ -94,7 +94,7 @@ class serviiApi { public static async fetchModpacks(): Promise { try { - const response = await fetch(`https://www.api.servii.fr/modpacks/image/a-metadata.txt`, { + const response = await fetch(`https://api.servii.fr/modpacks/image/a-metadata.txt`, { method: 'GET', }); const json = await response.json();