User: Fix importing FreeTube subscriptions with multiple profiles (#4011)

pull/4196/head
Samantaz Fox 2023-10-21 18:31:18 +02:00
commit 88cc62d45e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: F42821059186176E
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -228,8 +228,12 @@ struct Invidious::User
subs = matches.map(&.["channel_id"]) subs = matches.map(&.["channel_id"])
if subs.empty? if subs.empty?
data = JSON.parse(body)["subscriptions"] profiles = body.split('\n', remove_empty: true)
subs = data.as_a.map(&.["id"].as_s) profiles.each do |profile|
if data = JSON.parse(profile)["subscriptions"]?
subs += data.as_a.map(&.["id"].as_s)
end
end
end end
user.subscriptions += subs user.subscriptions += subs