mirror of
https://github.com/iv-org/invidious.git
synced 2025-04-19 15:15:58 -04:00
don't error when a channel doesn't have any community posts
This commit is contained in:
parent
c5fdd9ea65
commit
4abb1a6174
@ -57,6 +57,17 @@ def extract_channel_community(items, *, ucid, locale, format, thin_mode, is_sing
|
||||
.try &.as_s || ""
|
||||
if error_message == "This channel does not exist."
|
||||
raise NotFoundException.new(error_message)
|
||||
elsif error_message == "This channel hasn't posted yet"
|
||||
response = JSON.build do |json|
|
||||
json.object do
|
||||
json.field "authorId", ucid
|
||||
json.field "comments" do
|
||||
json.array do
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
return response
|
||||
else
|
||||
raise InfoException.new(error_message)
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user