pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

wrong related tmdb endpoint ๐Ÿ’€

Pas 02291a3e 6967261d

+5 -1
+5 -1
src/backend/metadata/tmdb.ts
··· 526 526 ); 527 527 } 528 528 529 + /** 530 + * Fetches recommended media from TMDB recommendations endpoint. 531 + * Returns media that users commonly watch together based on ratings and popularity. 532 + */ 529 533 export async function getRelatedMedia( 530 534 id: string, 531 535 type: TMDBContentTypes, ··· 534 538 const endpoint = type === TMDBContentTypes.MOVIE ? "movie" : "tv"; 535 539 const data = await get<{ 536 540 results: TMDBMovieSearchResult[] | TMDBShowSearchResult[]; 537 - }>(`/${endpoint}/${id}/similar`); 541 + }>(`/${endpoint}/${id}/recommendations`); 538 542 539 543 return data.results.slice(0, limit); 540 544 }