This commit is contained in:
Fredrik Burmester
2025-01-03 10:12:43 +01:00
parent ea3cc18b3c
commit 7639de153b
6 changed files with 2 additions and 29 deletions

View File

@@ -96,7 +96,6 @@ export default function search() {
} else {
if (!settings?.marlinServerUrl) return [];
console.log(settings.marlinServerUrl);
const url = `${
settings.marlinServerUrl
}/search?q=${encodeURIComponent(query)}&includeItemTypes=${types
@@ -105,8 +104,6 @@ export default function search() {
const response1 = await axios.get(url);
console.log(response1.statusText);
const ids = response1.data.ids;
if (!ids || !ids.length) return [];