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.

Update useSkipTime.ts

Pas ab5f0e23 5b32daac

+2 -2
+2 -2
src/components/player/hooks/useSkipTime.ts
··· 28 28 29 29 useEffect(() => { 30 30 const fetchTheIntroDBTime = async (): Promise<number | null> => { 31 - if (!meta?.imdbId) return null; 31 + if (!meta?.tmdbId) return null; 32 32 33 33 try { 34 - let apiUrl = `${THE_INTRO_DB_BASE_URL}?imdb_id=${meta.imdbId}`; 34 + let apiUrl = `${THE_INTRO_DB_BASE_URL}?tmdb_id=${meta.tmdbId}`; 35 35 if ( 36 36 meta.type !== "movie" && 37 37 meta.season?.number &&