endSessionDialog: Initialize Polkit permission asynchronously
The updatesPermission is currently initialized synchronously, which blocks the Mainloop for quite some time and therefore slows down startup of the shell, let's do it asynchronously instead. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/689
This commit is contained in:
parent
89f9925208
commit
05b345cc92
@ -352,12 +352,15 @@ class EndSessionDialog extends ModalDialog.ModalDialog {
|
||||
}
|
||||
|
||||
// It only makes sense to check for this permission if PackageKit is available.
|
||||
try {
|
||||
this._updatesPermission = Polkit.Permission.new_sync(
|
||||
'org.freedesktop.packagekit.trigger-offline-update', null, null);
|
||||
} catch (e) {
|
||||
log('No permission to trigger offline updates: %s'.format(e.toString()));
|
||||
}
|
||||
Polkit.Permission.new(
|
||||
'org.freedesktop.packagekit.trigger-offline-update', null, null,
|
||||
(source, res) => {
|
||||
try {
|
||||
this._updatesPermission = Polkit.Permission.new_finish(res);
|
||||
} catch (e) {
|
||||
log(`No permission to trigger offline updates: ${e}`);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
_onDestroy() {
|
||||
|
Loading…
Reference in New Issue
Block a user