aboutsummaryrefslogtreecommitdiffstats
path: root/apps/com.pelagicore.tuner/stores/TunerStore.qml
diff options
context:
space:
mode:
Diffstat (limited to 'apps/com.pelagicore.tuner/stores/TunerStore.qml')
-rw-r--r--apps/com.pelagicore.tuner/stores/TunerStore.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/com.pelagicore.tuner/stores/TunerStore.qml b/apps/com.pelagicore.tuner/stores/TunerStore.qml
index 811ef78c..1062335a 100644
--- a/apps/com.pelagicore.tuner/stores/TunerStore.qml
+++ b/apps/com.pelagicore.tuner/stores/TunerStore.qml
@@ -83,9 +83,9 @@ Store {
}
property var ipc: QtObject {
- property var musicIntentsInterface: ApplicationInterfaceExtension {
- id: musicIntentsInterface
- name: "neptune.musicintents.interface"
+ property var musicApplicationRequestIPC: ApplicationInterfaceExtension {
+ id: musicApplicationRequestIPC
+ name: "neptune.musicapprequests.interface"
Component.onCompleted: {
if (object.webradioInstalled) {
musicSourcesModel.append({"text" : "Web radio"});
@@ -97,10 +97,10 @@ Store {
}
property var ipcConx: Connections {
- target: musicIntentsInterface.object
+ target: musicApplicationRequestIPC.object
onSpotifyInstalledChanged: {
- if (musicIntentsInterface.object.spotifyInstalled) {
+ if (musicApplicationRequestIPC.object.spotifyInstalled) {
musicSourcesModel.append({"text" : "Spotify"});
} else {
for (var i = 0; i < musicSourcesModel.count; i++) {
@@ -111,7 +111,7 @@ Store {
}
}
onWebradioInstalledChanged: {
- if (musicIntentsInterface.object.webradioInstalled) {
+ if (musicApplicationRequestIPC.object.webradioInstalled) {
musicSourcesModel.append({"text" : "Web radio"});
} else {
for (var i = 0; i < musicSourcesModel.count; i++) {