Skip to content

Commit 205b74c

Browse files
authored
Merge pull request #5139 from Roardom/fix-similar-request-tmdb
(Fix) Ids on similar page not passed to request create page
2 parents d365afe + fff784a commit 205b74c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

resources/views/livewire/similar-torrent.blade.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,8 @@ class="form__checkbox"
10021002
: ($work?->name ?? '') . ' ' . substr($work->first_air_date ?? '', 0, 4)
10031003
),
10041004
'imdb' => $work?->imdb_id ?? '',
1005-
'tmdb' => $tmdbId ?? '',
1005+
'tmdb_movie_id' => $category->movie_meta ? $tmdbId ?? '' : '',
1006+
'tmdb_tv_id' => $category->tv_meta ? $tmdbId ?? '' : '',
10061007
'tvdb' => $work->tvdb_id ?? '',
10071008
'igdb' => $igdb ?? '',
10081009
])

0 commit comments

Comments
 (0)