From 2c5bc4a1a9543fb73d348ee48781ad23c6053258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 4 Mar 2015 19:01:32 +0100 Subject: [PATCH] appFavorites: Only use renamed ID if it can be resolved We currently assume that if a .desktop file has been renamed (that is, it is in our rename list), the updated ID will be used. That assumption was mostly sound when the list contained only GNOME apps following the same release cycle as gnome-shell, but as applications with less ties to the GNOME schedule adopt the reverse DNS notation, it becomes more likely for apps to appear in the list before actually being updated on the system. Handle this case by only renaming IDs for which the replacement can be resolved to an existing application. https://bugzilla.gnome.org/show_bug.cgi?id=745626 --- js/ui/appFavorites.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/ui/appFavorites.js b/js/ui/appFavorites.js index c2addb39e..12c83b0e3 100644 --- a/js/ui/appFavorites.js +++ b/js/ui/appFavorites.js @@ -59,12 +59,14 @@ const AppFavorites = new Lang.Class({ reload: function() { let ids = global.settings.get_strv(this.FAVORITE_APPS_KEY); + let appSys = Shell.AppSystem.get_default(); // Map old desktop file names to the current ones let updated = false; ids = ids.map(function (id) { let newId = RENAMED_DESKTOP_IDS[id]; - if (newId !== undefined) { + if (newId !== undefined && + appSys.lookup_app(newId) != null) { updated = true; return newId; } @@ -74,7 +76,6 @@ const AppFavorites = new Lang.Class({ if (updated) global.settings.set_strv(this.FAVORITE_APPS_KEY, ids); - let appSys = Shell.AppSystem.get_default(); let apps = ids.map(function (id) { return appSys.lookup_app(id); }).filter(function (app) {