fix: library extract lyric part (#1201)

master
memorydream 3 years ago committed by GitHub
parent 07b5d4de3d
commit 14566b20b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -211,7 +211,7 @@ import MvRow from '@/components/MvRow.vue';
* @returns {string} The lyric part
*/
function extractLyricPart(rawLyric) {
return rawLyric.split(']')[1].trim();
return rawLyric.split(']').pop().trim();
}
export default {

Loading…
Cancel
Save