From 8d7fbe7dd9b0a64915a96d342579ab80951be840 Mon Sep 17 00:00:00 2001
From: fuyu <54523771+mfmfuyu@users.noreply.github.com>
Date: Fri, 30 Oct 2020 21:09:20 +0900
Subject: [PATCH] Fix wrong seek bar width on media player (#15060)
---
app/javascript/mastodon/features/audio/index.js | 4 ++--
app/javascript/mastodon/features/video/index.js | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app/javascript/mastodon/features/audio/index.js b/app/javascript/mastodon/features/audio/index.js
index 2992e3662..434148e8e 100644
--- a/app/javascript/mastodon/features/audio/index.js
+++ b/app/javascript/mastodon/features/audio/index.js
@@ -246,7 +246,7 @@ class Audio extends React.PureComponent {
handleTimeUpdate = () => {
this.setState({
currentTime: this.audio.currentTime,
- duration: Math.floor(this.audio.duration),
+ duration: this.audio.duration,
});
}
@@ -454,7 +454,7 @@ class Audio extends React.PureComponent {
{formatTime(Math.floor(currentTime))}
/
- {formatTime(this.state.duration || Math.floor(this.props.duration))}
+ {formatTime(Math.floor(this.state.duration || this.props.duration))}
diff --git a/app/javascript/mastodon/features/video/index.js b/app/javascript/mastodon/features/video/index.js
index 642722193..229a92140 100644
--- a/app/javascript/mastodon/features/video/index.js
+++ b/app/javascript/mastodon/features/video/index.js
@@ -198,7 +198,7 @@ class Video extends React.PureComponent {
handleTimeUpdate = () => {
this.setState({
currentTime: this.video.currentTime,
- duration: Math.floor(this.video.duration),
+ duration:this.video.duration,
});
}
@@ -551,7 +551,7 @@ class Video extends React.PureComponent {
{formatTime(Math.floor(currentTime))}
/
- {formatTime(duration)}
+ {formatTime(Math.floor(duration))}
)}