Skip to content

Commit

Permalink
Fix trakt link
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithmohan committed Nov 15, 2024
1 parent de774d5 commit d798d62
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/Collection/SeriesMetadata.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ const MetadataLink = ({ id, seriesId, site, type }: Props) => {
case 'TMDB':
return `https://www.themoviedb.org/${type === 'Show' ? 'tv' : 'movie'}/${id}`;
case 'TraktTv':
// TODO: Figure how to get trakt series link using ID
return '#';
return `https://trakt.tv/shows/${id}`;
default:
return '#';
}
Expand Down

0 comments on commit d798d62

Please sign in to comment.