mirror of
https://github.com/iv-org/invidious.git
synced 2025-03-01 02:41:25 -05:00
fix 5161 by checking recommended videos published field for presence instead of just not nil
This commit is contained in:
parent
164d764d55
commit
29219c46a1
@ -268,7 +268,7 @@ module Invidious::JSONify::APIv1
|
||||
json.field "viewCountText", rv["short_view_count"]?
|
||||
json.field "viewCount", rv["view_count"]?.try &.empty? ? nil : rv["view_count"].to_i64
|
||||
json.field "published", rv["published"]?
|
||||
if !rv["published"]?.nil?
|
||||
if rv["published"]?.try &.presence
|
||||
json.field "publishedText", translate(locale, "`x` ago", recode_date(Time.parse_rfc3339(rv["published"].to_s), locale))
|
||||
else
|
||||
json.field "publishedText", ""
|
||||
|
Loading…
x
Reference in New Issue
Block a user