mirror of https://github.com/iv-org/invidious.git
Add fix for videos that don't have videoDetails
This commit is contained in:
parent
92223dbee5
commit
58fb74179b
|
@ -263,7 +263,7 @@ class Video
|
|||
end
|
||||
|
||||
def keywords
|
||||
keywords = self.player_response["videoDetails"]["keywords"]?.try &.as_a
|
||||
keywords = self.player_response["videoDetails"]?.try &.["keywords"]?.try &.as_a
|
||||
keywords ||= [] of String
|
||||
|
||||
return keywords
|
||||
|
|
Loading…
Reference in New Issue