fix: recognized notif not getting pushed

This commit is contained in:
vaguesyntax
2025-10-26 12:24:35 +03:00
parent cf159f6112
commit b137feac16
@@ -49,6 +49,7 @@ AndroidQuickToggleButton {
root.recognizedTrackSubtitle = obj.track.subtitle
root.recognizedTrackURL = obj.track.url
musicReconizedProc.running = true
recognizedMusicKiller.running = true
toggled = false
}
}
@@ -68,10 +69,14 @@ AndroidQuickToggleButton {
}
}
Timer {
id: recognizedMusicKiller
running: false; repeat: false
interval: 5000
onTriggered: musicReconizedProc.running = false
}
StyledToolTip {
//text: Translation.tr("Identifies the song thats playing right now")
text: "Identifies the song thats playing right now"
text: Translation.tr("Identifies the song thats playing right now")
}
}