[gnome-music/wip/christopherdavis/fix-nightly-mpris-launch: 4/4] gstplayer: correctly report desktop id
- From: Christopher Davis <christopherdavis src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-music/wip/christopherdavis/fix-nightly-mpris-launch: 4/4] gstplayer: correctly report desktop id
- Date: Thu, 11 Apr 2019 21:11:19 +0000 (UTC)
commit fd58b70d7144481ab5282055ac18b31b931b3bb0
Author: Christopher Davis <brainblasted disroot org>
Date: Thu Apr 11 13:15:07 2019 -0400
gstplayer: correctly report desktop id
Previously we incorrectly told gstreamer that Music
was always using the stable ID. Now we correctly
report our desktop ID based on the profile.
gnomemusic/gstplayer.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/gnomemusic/gstplayer.py b/gnomemusic/gstplayer.py
index 16435c15..d00c35a9 100644
--- a/gnomemusic/gstplayer.py
+++ b/gnomemusic/gstplayer.py
@@ -321,7 +321,8 @@ class GstPlayer(GObject.GObject):
self, missing_plugin_messages, confirm_search):
install_ctx = GstPbutils.InstallPluginsContext.new()
- install_ctx.set_desktop_id('org.gnome.Music.desktop')
+ application_id = Gtk.Application.get_default().get_application_id()
+ install_ctx.set_desktop_id(application_id + '.desktop')
install_ctx.set_confirm_search(confirm_search)
startup_id = "_TIME{}".format(Gtk.get_current_event_time())
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]