Add merge page

This commit is contained in:
2025-09-27 22:47:53 +02:00
parent c4b94c007d
commit 01021ef28b
9 changed files with 81 additions and 29 deletions

View File

@@ -98,7 +98,7 @@ const search = async (query: string): Promise<MinimalManga[]> => {
return await $fetch<MinimalManga>(new Request(`${config.public.openFetch.api.baseURL}v2/Search/Url`), {
method: 'POST',
body: JSON.stringify(query),
}).then(x => [x]);
}).then((x) => [x]);
} else if (connector.value) {
return await $fetch<MinimalManga[]>(
new Request(`${config.public.openFetch.api.baseURL}v2/Search/${connector.value.name}/${query}`)