Skip to content

Commit

Permalink
Fix video duration rendering issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal committed Feb 8, 2020
1 parent 5a6d339 commit 3cedadb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void recycle() {
time -= TimeUnit.HOURS.toMillis(hours);

long minutes = TimeUnit.MILLISECONDS.toMinutes(time);
time -= TimeUnit.MINUTES.toHours(time);
time -= TimeUnit.MINUTES.toMillis(minutes);

long seconds = TimeUnit.MILLISECONDS.toSeconds(time);

Expand Down

0 comments on commit 3cedadb

Please sign in to comment.