mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
extensionSystem: Fix error emitting when enabling/disabling
We don't have an extension object here.
This commit is contained in:
parent
bdb3410d9d
commit
e1ec89a133
1 changed files with 2 additions and 2 deletions
|
|
@ -215,7 +215,7 @@ function onEnabledExtensionsChanged() {
|
|||
try {
|
||||
enableExtension(uuid);
|
||||
} catch(e) {
|
||||
logExtensionError(extension.uuid, e);
|
||||
logExtensionError(uuid, e);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -227,7 +227,7 @@ function onEnabledExtensionsChanged() {
|
|||
try {
|
||||
disableExtension(uuid);
|
||||
} catch(e) {
|
||||
logExtensionError(extension.uuid, e);
|
||||
logExtensionError(uuid, e);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue