|
@@ -96,8 +96,8 @@ export function resolveMusicCardLyricMetaText(
|
|
|
): string {
|
|
): string {
|
|
|
const safeArtist = artist?.trim() ?? ''
|
|
const safeArtist = artist?.trim() ?? ''
|
|
|
const safeCurrentLyric = currentLyric?.trim() ?? ''
|
|
const safeCurrentLyric = currentLyric?.trim() ?? ''
|
|
|
- if (safeArtist !== '' && hasLyric && safeCurrentLyric !== '') {
|
|
|
|
|
- return `${safeArtist} - ${safeCurrentLyric}`
|
|
|
|
|
|
|
+ if ( hasLyric && safeCurrentLyric !== '') {
|
|
|
|
|
+ return `${safeCurrentLyric}`
|
|
|
}
|
|
}
|
|
|
if (safeArtist !== '') {
|
|
if (safeArtist !== '') {
|
|
|
return safeArtist
|
|
return safeArtist
|