From ee0959b7452d310c541e8a7e9cc01df568e24f1a Mon Sep 17 00:00:00 2001 From: Simon Schneegans Date: Fri, 7 Jun 2024 08:31:08 +0200 Subject: [PATCH] :bug: Fix missing variable --- extension.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extension.js b/extension.js index de4bceb..f97eafe 100644 --- a/extension.js +++ b/extension.js @@ -69,8 +69,7 @@ export default class KandoIntegration extends Extension { // Re-bind all shortcuts that were bound before the extension was disabled. this._settings = this.getSettings(); - this._settings.get_strv('shortcuts'); - shortcuts.forEach((shortcut) => { + this._settings.get_strv('shortcuts').forEach((shortcut) => { this._shortcuts.bind(shortcut); }); }