mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -305,7 +305,7 @@ var ExtensionManager = class {
|
|||
|
||||
_callExtensionInit(uuid) {
|
||||
if (!Main.sessionMode.allowExtensions)
|
||||
return;
|
||||
return false;
|
||||
|
||||
let extension = this.lookup(uuid);
|
||||
if (!extension)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue