kopia lustrzana https://github.com/iv-org/invidious
Merge pull request #1808 from tenpura-shrimp/showstreamstart
show how long ago stream startedpull/1817/head
commit
c8cdc50d29
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue