diff --git a/js/misc/appInfo.js b/js/misc/appInfo.js index 61b36bdcf..67554f352 100644 --- a/js/misc/appInfo.js +++ b/js/misc/appInfo.js @@ -98,6 +98,9 @@ function getMostUsedApps(count) { let favs = getFavorites(); // Fill the list with default applications it's not full yet for (let i = 0; i < favs.length && favs.length <= count; i++) { + let appId = favs[i].appId; + if (alreadyAdded[appId]) + continue; matches.push(favs[i]); }