Release 2.3.2

This commit is contained in:
2025-07-17 22:03:56 +03:00
parent 3ad6bf75a3
commit c7825f20b9
8 changed files with 324 additions and 16 deletions

View File

@@ -6,6 +6,7 @@ import { tvAPI } from '@/lib/api';
import { getImageUrl } from '@/lib/neoApi';
import type { TVShowDetails } from '@/lib/api';
import MoviePlayer from '@/components/MoviePlayer';
import TorrentSelector from '@/components/TorrentSelector';
import FavoriteButton from '@/components/FavoriteButton';
import Reactions from '@/components/Reactions';
import { formatDate } from '@/lib/utils';
@@ -145,6 +146,11 @@ export default function TVContent({ showId, initialShow }: TVContentProps) {
poster={show.poster_path || ''}
imdbId={imdbId}
/>
<TorrentSelector
imdbId={imdbId}
type="tv"
totalSeasons={show.number_of_seasons}
/>
</div>
)}
</div>