From b6b3514852ae19c7fac22114757ef7fb2d91a639 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 25 Apr 2026 14:29:01 +1000 Subject: [PATCH] fix: undef warning --- modules/dashboard/dash/Media.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dashboard/dash/Media.qml b/modules/dashboard/dash/Media.qml index 88216280..f4b1fae3 100644 --- a/modules/dashboard/dash/Media.qml +++ b/modules/dashboard/dash/Media.qml @@ -214,7 +214,7 @@ Item { anchors.margins: Tokens.spacing.small icon: Players.active?.isPlaying ? "pause" : "play_arrow" - checked: Players.active?.isPlaying + checked: Players.active?.isPlaying ?? false disabled: !Players.active?.canTogglePlaying onClicked: Players.active?.togglePlaying() }