Closed blttll closed 4 months ago
Bulk track deletion implementation relies on track numbers being deleted to be sorted numerically. However, the sorting was done by ASCII character order leanding to deletion of unexpected tracks in some cases.
[2,3,11].sort() // [11, 2, 3]
Thank you - I had no idea about this bug.
Bulk track deletion implementation relies on track numbers being deleted to be sorted numerically. However, the sorting was done by ASCII character order leanding to deletion of unexpected tracks in some cases.
[2,3,11].sort() // [11, 2, 3]