mirror of
https://github.com/beetbox/beets.git
synced 2026-02-11 18:02:10 +01:00
Merge pull request #2822 from waweic/patch-1
Fix jumping time in beets.js
This commit is contained in:
commit
e938ad3d23
2 changed files with 4 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ var timeFormat = function(secs) {
|
|||
return '0:00';
|
||||
}
|
||||
secs = Math.round(secs);
|
||||
var mins = '' + Math.round(secs / 60);
|
||||
var mins = '' + Math.floor(secs / 60);
|
||||
secs = '' + (secs % 60);
|
||||
if (secs.length < 2) {
|
||||
secs = '0' + secs;
|
||||
|
|
|
|||
|
|
@ -65,6 +65,9 @@ Fixes:
|
|||
* Importing a release with multiple release events now selects the
|
||||
event based on the order of your :ref:`preferred` countries rather than
|
||||
the order of release events in MusicBrainz. :bug:`2816`
|
||||
* :doc:`/plugins/web`: The time display in the web interface would incorrectly jump
|
||||
at the 30-second mark of every minute. Now, it correctly changes over at zero
|
||||
seconds. :bug:`2822`
|
||||
|
||||
For developers:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue