Fix recommended-tv endpoint being called instead of movie one in add-movie component

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Maximilian Dorninger
2025-08-30 22:22:57 +02:00
committed by GitHub
parent 62da720944
commit a397264944

View File

@@ -34,7 +34,7 @@
}
}
})
: await client.GET('/api/v1/tv/recommended');
: await client.GET('/api/v1/movies/recommended');
if (data && data.length > 0) {
toast.success(`Found ${data.length} result(s) for "${query}".`);
results = data as components['schemas']['MetaDataProviderSearchResult'][];