mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
fix: library extract lyric part (#1201)
This commit is contained in:
parent
07b5d4de3d
commit
14566b20b2
1 changed files with 1 additions and 1 deletions
|
|
@ -211,7 +211,7 @@ import MvRow from '@/components/MvRow.vue';
|
||||||
* @returns {string} The lyric part
|
* @returns {string} The lyric part
|
||||||
*/
|
*/
|
||||||
function extractLyricPart(rawLyric) {
|
function extractLyricPart(rawLyric) {
|
||||||
return rawLyric.split(']')[1].trim();
|
return rawLyric.split(']').pop().trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue