Merge pull request #1808 from tenpura-shrimp/showstreamstart

show how long ago stream started
このコミットが含まれているのは:
TheFrenchGhosty 2021-02-25 17:53:51 +01:00 committed by GitHub
コミット c8cdc50d29
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
2個のファイルの変更6行の追加1行の削除

ファイルの表示

@ -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>