Speed up manage_subscriptions
This commit is contained in:
parent
9df77707d3
commit
c099a5ad2e
|
@ -1373,12 +1373,7 @@ get "/subscription_manager" do |env|
|
||||||
format = env.params.query["format"]?
|
format = env.params.query["format"]?
|
||||||
format ||= "rss"
|
format ||= "rss"
|
||||||
|
|
||||||
subscriptions = [] of InvidiousChannel
|
subscriptions = PG_DB.query_all("SELECT * FROM channels WHERE id = ANY('{#{user.subscriptions.join(",")}}')", as: InvidiousChannel)
|
||||||
user.subscriptions.each do |ucid|
|
|
||||||
if channel = PG_DB.query_one?("SELECT * FROM channels WHERE id = $1", ucid, as: InvidiousChannel)
|
|
||||||
subscriptions << channel
|
|
||||||
end
|
|
||||||
end
|
|
||||||
subscriptions.sort_by! { |channel| channel.author.downcase }
|
subscriptions.sort_by! { |channel| channel.author.downcase }
|
||||||
|
|
||||||
if action_takeout
|
if action_takeout
|
||||||
|
|
Loading…
Reference in New Issue