Skip to content

Commit

Permalink
[LockScreen] Fixup warninig on media controls
Browse files Browse the repository at this point in the history
  • Loading branch information
neochapay committed Jul 10, 2024
1 parent 10f736f commit 73facac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qml/lockscreen/MediaControls.qml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Item {
id: artistLabel
width: parent.width
horizontalAlignment: Text.AlignHCenter
text: (mprisController.metaData.contributingArtist || qsTr("Unknown artist")).join(', ')
text: mprisController.metaData.contributingArtist ? (mprisController.metaData.contributingArtist || qsTr("Unknown artist")).join(', ') : ""
}

Label {
Expand Down

0 comments on commit 73facac

Please sign in to comment.