feat: option to increase the number of videos shown on the popular page
All checks were successful
Invidious CI / build (push) Successful in 6m50s

This commit is contained in:
Fijxu 2025-04-19 20:56:14 -04:00
parent 4a0e61812e
commit deb1187ea9
Signed by: Fijxu
GPG key ID: 32C1DDF333EDA6A4
2 changed files with 4 additions and 1 deletions

View file

@ -52,6 +52,7 @@ struct ConfigPreferences
property vr_mode : Bool = true
property show_nick : Bool = true
property save_player_pos : Bool = false
property enable_dearrow : Bool = false
def to_tuple
{% begin %}
@ -241,6 +242,8 @@ class Config
property disable_livestreams : Bool = true
property max_popuplar_results : Int32 = 40
{% if flag?(:linux) %}
property reload_config_automatically : Bool = true
{% end %}

View file

@ -149,7 +149,7 @@ module Invidious::Database::ChannelVideos
SELECT DISTINCT ON (ucid) *
FROM channel_videos
WHERE ucid IN (SELECT channel FROM (SELECT UNNEST(subscriptions) AS channel FROM users) AS d
GROUP BY channel ORDER BY COUNT(channel) DESC LIMIT 40)
GROUP BY channel ORDER BY COUNT(channel) DESC LIMIT #{CONFIG.max_popuplar_results})
ORDER BY ucid, published DESC
SQL