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:
parent
bdcf3037ca
commit
ce92270626
@ -305,7 +305,7 @@ var ExtensionManager = class {
|
|||||||
|
|
||||||
_callExtensionInit(uuid) {
|
_callExtensionInit(uuid) {
|
||||||
if (!Main.sessionMode.allowExtensions)
|
if (!Main.sessionMode.allowExtensions)
|
||||||
return;
|
return false;
|
||||||
|
|
||||||
let extension = this.lookup(uuid);
|
let extension = this.lookup(uuid);
|
||||||
if (!extension)
|
if (!extension)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user