summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Zhao <azhao12345@users.noreply.github.com>2021-02-24 23:06:50 -0500
committerAndrew Zhao <azhao12345@users.noreply.github.com>2021-02-24 23:08:04 -0500
commit295e5c9731f3adfd96d900d13e7fce4fd0d5078a (patch)
tree58b5b6e52ac034a2ea3d38178b60145adbc958b0 /src
parentcbc7603248341839157d87a2addd0141281880f8 (diff)
downloadinvidious-295e5c9731f3adfd96d900d13e7fce4fd0d5078a.tar.gz
invidious-295e5c9731f3adfd96d900d13e7fce4fd0d5078a.tar.bz2
invidious-295e5c9731f3adfd96d900d13e7fce4fd0d5078a.zip
show how long ago stream started
Diffstat (limited to 'src')
-rw-r--r--src/invidious/videos.cr3
-rw-r--r--src/invidious/views/watch.ecr4
2 files changed, 6 insertions, 1 deletions
diff --git a/src/invidious/videos.cr b/src/invidious/videos.cr
index 74edc156..d0b7d6db 100644
--- a/src/invidious/videos.cr
+++ b/src/invidious/videos.cr
@@ -534,7 +534,8 @@ struct Video
end
def live_now
- info["videoDetails"]["isLiveContent"]?.try &.as_bool || false
+ info["microformat"]?.try &.["playerMicroformatRenderer"]?
+ .try &.["liveBroadcastDetails"]?.try &.["isLiveNow"]?.try &.as_bool || false
end
def is_listed
diff --git a/src/invidious/views/watch.ecr b/src/invidious/views/watch.ecr
index 924914a5..a86e23b2 100644
--- a/src/invidious/views/watch.ecr
+++ b/src/invidious/views/watch.ecr
@@ -81,6 +81,10 @@
<h3>
<%= video.premiere_timestamp.try { |t| translate(locale, "Premieres in `x`", recode_date((t - Time.utc).ago, locale)) } %>
</h3>
+ <% elsif video.live_now %>
+ <h3>
+ <%= video.premiere_timestamp.try { |t| translate(locale, "Started streaming `x` ago", recode_date((Time.utc - t).ago, locale)) } %>
+ </h3>
<% end %>
</div>