mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Add mixes to genre channels
This commit is contained in:
parent
44f4057876
commit
2ebc773863
2 changed files with 15 additions and 2 deletions
|
@ -2471,7 +2471,14 @@ get "/channel/:ucid" do |env|
|
|||
sort_by ||= "last"
|
||||
|
||||
items, continuation = fetch_channel_playlists(ucid, author, auto_generated, continuation, sort_by)
|
||||
items.select! { |item| item.is_a?(SearchPlaylist) && !item.videos.empty? }
|
||||
items.uniq! do |item|
|
||||
if item.responds_to?(:title)
|
||||
item.title
|
||||
elsif item.responds_to?(:author)
|
||||
item.author
|
||||
end
|
||||
end
|
||||
items.select! { |item| item.responds_to?(:thumbnail_id) && item.thumbnail_id }
|
||||
items = items.map { |item| item.as(SearchPlaylist) }
|
||||
items.each { |item| item.author = "" }
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue