1
0
mirror of https://github.com/iv-org/invidious.git synced 2024-12-23 22:39:28 -05:00

Merge pull request from iv-org/SamantazFox-patch-1

comments: don't error out when video has no comments
This commit is contained in:
Samantaz Fox 2022-02-15 02:24:06 +01:00 committed by GitHub
commit b24a89f820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,7 +78,8 @@ def fetch_youtube_comments(id, cursor, format, locale, thin_mode, region, sort_b
when "RELOAD_CONTINUATION_SLOT_HEADER" when "RELOAD_CONTINUATION_SLOT_HEADER"
header = item["reloadContinuationItemsCommand"]["continuationItems"][0] header = item["reloadContinuationItemsCommand"]["continuationItems"][0]
when "RELOAD_CONTINUATION_SLOT_BODY" when "RELOAD_CONTINUATION_SLOT_BODY"
contents = item["reloadContinuationItemsCommand"]["continuationItems"] # continuationItems is nil when video has no comments
contents = item["reloadContinuationItemsCommand"]["continuationItems"]?
end end
elsif item["appendContinuationItemsAction"]? elsif item["appendContinuationItemsAction"]?
contents = item["appendContinuationItemsAction"]["continuationItems"] contents = item["appendContinuationItemsAction"]["continuationItems"]