From f588132cadc2708666a6631b185e62d33428bd40 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Tue, 7 Aug 2018 19:36:16 -0500 Subject: [PATCH] Replace comment published with timestamp --- src/invidious.cr | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/invidious.cr b/src/invidious.cr index 66846fdd..9b54629f 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -1831,8 +1831,10 @@ get "/api/v1/comments/:id" do |env| json.field "authorUrl", "" end + published = decode_date(node_comment["publishedTimeText"]["runs"][0]["text"].as_s.rchop(" (edited)")) + json.field "content", content_text - json.field "published", node_comment["publishedTimeText"]["runs"][0]["text"] + json.field "published", published.epoch json.field "likeCount", node_comment["likeCount"] json.field "commentId", node_comment["commentId"]