diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/invidious.cr | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/invidious.cr b/src/invidious.cr index fdefa029..ddc9b1b0 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -2405,6 +2405,7 @@ get "/api/v1/trending" do |env| json.field "viewCount", video.views json.field "author", video.author + json.field "authorId", video.ucid json.field "authorUrl", "/channel/#{video.ucid}" json.field "published", video.published.epoch @@ -2435,6 +2436,7 @@ get "/api/v1/top" do |env| json.field "viewCount", video.views json.field "author", video.author + json.field "authorId", video.ucid json.field "authorUrl", "/channel/#{video.ucid}" json.field "published", video.published.epoch json.field "publishedText", "#{recode_date(video.published)} ago" |
