add optimizations suggested by gemini

This commit is contained in:
lucy 2026-01-19 17:04:51 +01:00
parent fb5aa0c9cb
commit 12753b6823

View File

@ -6,7 +6,7 @@ import qs.reusables
Rectangle { Rectangle {
id: container id: container
visible: root.getSpotify() != null visible: root.spotify != null
radius: implicitHeight / 2 radius: implicitHeight / 2
color: Colors.color0 color: Colors.color0
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
@ -19,7 +19,7 @@ Rectangle {
property var spotify: root.getSpotify() property var spotify: root.getSpotify()
function getSpotify() { function getSpotify() {
for (let i = 0; i < Mpris.players.values.length; i++) { for (let i = 0; i < Mpris.players.values.length; i++) {
if (Mpris.players.values[i].identity === "Spotify") { if (Mpris.players.values[i].identity.toLowerCase() === "spotify") {
return Mpris.players.values[i]; return Mpris.players.values[i];
} }
} }