You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When dragging and dropping files, I observed the loading screen to say "240 loaded of 238". I think this inconsistency comes from the fact that the total is given by the number of files (numFiles):
When dragging and dropping files, I observed the loading screen to say "240 loaded of 238". I think this inconsistency comes from the fact that the total is given by the number of files (
numFiles
):derive/src/ui.js
Line 130 in ed9d902
but
numLoaded
is incremented for each track (and not for each file):derive/src/ui.js
Lines 89 to 96 in ed9d902
So if there are files with multiple tracks, this inconsistency can occur that the number of loaded is more than the number of total.
Perhaps a quick fix would be to move
modal.addSuccess();
out of the loop?The text was updated successfully, but these errors were encountered: