From a10dd35e60ba171ada0484f535e5359000b3b471 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Fri, 4 Oct 2019 13:26:33 +0200 Subject: [PATCH] updates monitor: Don't skip automatic updates that require new permissions This is a workaround for 3.34.x to avoid holding back updates to any apps that require new permissions, as per aday's guidance. For master, this is fixed in a better way (https://gitlab.gnome.org/GNOME/gnome-software/merge_requests/329) where we show a shell notification that tells the user that they need to review apps that need new permissions. --- src/gs-update-monitor.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gs-update-monitor.c b/src/gs-update-monitor.c index c55b15366..81a8305b4 100644 --- a/src/gs-update-monitor.c +++ b/src/gs-update-monitor.c @@ -327,8 +327,6 @@ _should_auto_update (GsApp *app) return FALSE; if (gs_app_get_kind (app) == AS_APP_KIND_FIRMWARE) return FALSE; - if (gs_app_has_quirk (app, GS_APP_QUIRK_NEW_PERMISSIONS)) - return FALSE; return TRUE; } -- GitLab