mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-23 01:05:13 +02:00
feat: Updated library page to use new data store
This commit is contained in:
@@ -75,11 +75,11 @@ export const getTmdbMovie = async (tmdbId: number) =>
|
||||
}
|
||||
}).then((res) => res.data as TmdbMovieFull2 | undefined);
|
||||
|
||||
export const getTmdbSeriesFromTvdbId = async (tvdbId: number) =>
|
||||
export const getTmdbSeriesFromTvdbId = async (tvdbId: string) =>
|
||||
TmdbApiOpen.get('/3/find/{external_id}', {
|
||||
params: {
|
||||
path: {
|
||||
external_id: String(tvdbId)
|
||||
external_id: tvdbId
|
||||
},
|
||||
query: {
|
||||
external_source: 'tvdb_id'
|
||||
|
||||
Reference in New Issue
Block a user