[SCM] kdeconnect packaging branch, master, updated. debian/0.9g-1-1183-g9d69498
Maximiliano Curia
maxy at moszumanska.debian.org
Fri Oct 14 14:29:55 UTC 2016
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/kdeconnect.git;a=commitdiff;h=308a89f
The following commit has been merged in the master branch:
commit 308a89f5eaef4a3fa6faa4f39e5aec5a719ba364
Author: Albert Vaca <albertvaka at gmail.com>
Date: Sun Jun 26 17:11:08 2016 +0200
playerList was sometimes sent as null since this change (maybe when empty?)
Reverted to the previous, saner, syntax.
---
plugins/mpriscontrol/mpriscontrolplugin.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/plugins/mpriscontrol/mpriscontrolplugin.cpp b/plugins/mpriscontrol/mpriscontrolplugin.cpp
index 73826b1..98ad168 100644
--- a/plugins/mpriscontrol/mpriscontrolplugin.cpp
+++ b/plugins/mpriscontrol/mpriscontrolplugin.cpp
@@ -281,7 +281,8 @@ bool MprisControlPlugin::receivePackage (const NetworkPackage& np)
void MprisControlPlugin::sendPlayerList()
{
- NetworkPackage np(PACKAGE_TYPE_MPRIS, QVariantMap{{"playerList", QVariant::fromValue(playerList.keys())}});
+ NetworkPackage np(PACKAGE_TYPE_MPRIS);
+ np.set("playerList",playerList.keys());
sendPackage(np);
}
--
kdeconnect packaging
More information about the pkg-kde-commits
mailing list