extensionSystem: Add missing return value

_callExtensionInit() should return whether the extension was initialized
successfully or not, but the early return added in commit 2a9e065cfb
doesn't.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/715
This commit is contained in:
Florian Müllner 2019-09-12 12:40:46 +02:00
parent bdcf3037ca
commit ce92270626

View File

@ -305,7 +305,7 @@ var ExtensionManager = class {
_callExtensionInit(uuid) {
if (!Main.sessionMode.allowExtensions)
return;
return false;
let extension = this.lookup(uuid);
if (!extension)