Show success progress after track download

pull/1440/head
Marco H 2022-02-12 18:26:46 +01:00
parent 405de6d6c0
commit 5654fa9441
1 changed files with 1 additions and 0 deletions

View File

@ -140,6 +140,7 @@ function downloadTrack(filename, callback) {
var headers = lines.shift().split(",");
var track = lines.map(l=>trackLineToObject(headers, l));
callback(track);
showToast("Download finished.", "toast-success");
});
}