Skip to content

Commit d422fa2

Browse files
committed
fix: poster view in torrent search
This value isn't in the group by clause.
1 parent 5418fe8 commit d422fa2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Http/Livewire/TorrentSearch.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -845,10 +845,10 @@ final public function groupedPosters()
845845
->selectRaw('SUM(times_completed) as times_completed')
846846
->selectRaw('MIN(category_id) as category_id')
847847
->selectRaw(<<<'SQL'
848-
CASE
848+
MIN(CASE
849849
WHEN category_id IN (SELECT id FROM categories WHERE movie_meta = 1) THEN 'movie'
850850
WHEN category_id IN (SELECT id FROM categories WHERE tv_meta = 1) THEN 'tv'
851-
END AS meta
851+
END) AS meta
852852
SQL)
853853
->havingNotNull('meta')
854854
->where(fn ($query) => $query->where('tmdb_movie_id', '!=', 0)->orWhere('tmdb_tv_id', '!=', 0))

0 commit comments

Comments
 (0)