fix: lyrics sort (#1199)

This commit is contained in:
memorydream 2022-01-08 01:12:16 +08:00 committed by GitHub
parent 3d71e9fc00
commit 07b5d4de3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,5 +29,6 @@ export function parseLyric(lrc) {
}
}
}
lrcObj.sort((a, b) => a.time - b.time);
return lrcObj;
}