fix inconsistent label

This commit is contained in:
Bnyro 2022-09-11 17:17:36 +02:00
parent d3d82a7d0f
commit 1e54f20d03

View File

@ -7,20 +7,8 @@ import com.github.libretube.util.ThemeHelper
fun TextView.setFormattedDuration(duration: Long) {
val text = if (duration < 0L) {
this.setBackgroundColor(
ThemeHelper.getThemeColor(
context,
R.attr.colorPrimaryDark
)
)
this.context.getString(R.string.live)
} else if (duration in 0L..60L) {
this.setBackgroundColor(
ThemeHelper.getThemeColor(
context,
R.attr.colorPrimaryDark
)
)
this.context.getString(R.string.yt_shorts)
} else {
DateUtils.formatElapsedTime(duration)