From a206f0894ac94da4b2f4af63b9038ae26763d808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20G=C3=A9czi?= Date: Fri, 27 Oct 2023 00:00:03 +0000 Subject: [PATCH] [qt][platform]: Synchronize geoclue desktopId with desktop file name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Certain GUI Shells like [Phosh](https://en.wikipedia.org/wiki/Phosh) implement a `geoclue` agent in which the `desktopId` of the application, that requested positioning is checked against the desktop file of the same application for authorization purposes. See the [location manager of Phosh]( https://gitlab.gnome.org/World/Phosh/phosh/-/blob/main/src/location-manager.c?ref_type=heads#L239) * Needed for https://github.com/flathub/app.organicmaps.desktop/issues/61 Signed-off-by: Ferenc Géczi --- platform/qt_location_service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/qt_location_service.cpp b/platform/qt_location_service.cpp index 0c885e31fe..155ce00739 100644 --- a/platform/qt_location_service.cpp +++ b/platform/qt_location_service.cpp @@ -61,7 +61,7 @@ static location::TLocationSource qStringToTLocationSource(QString const & source QtLocationService::QtLocationService(location::LocationObserver & observer, std::string const & sourceName) : LocationService(observer) { QVariantMap params; - params["desktopId"] = "OrganicMaps"; + params["desktopId"] = "app.organicmaps.desktop"; m_positionSource = QGeoPositionInfoSource::createSource(QString::fromStdString(sourceName), params, this); if (!m_positionSource)