diff options
Diffstat (limited to 'ext/js/input/hotkey-help-controller.js')
-rw-r--r-- | ext/js/input/hotkey-help-controller.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/input/hotkey-help-controller.js b/ext/js/input/hotkey-help-controller.js index 1fa9372f..16f3d26f 100644 --- a/ext/js/input/hotkey-help-controller.js +++ b/ext/js/input/hotkey-help-controller.js @@ -17,7 +17,7 @@ */ import {parseJson} from '../core/json.js'; -import {isObject} from '../core/utilities.js'; +import {isObjectNotArray} from '../core/object-utilities.js'; import {HotkeyUtil} from './hotkey-util.js'; export class HotkeyHelpController { @@ -93,7 +93,7 @@ export class HotkeyHelpController { */ _getAllCommands() { return new Promise((resolve, reject) => { - if (!(isObject(chrome.commands) && typeof chrome.commands.getAll === 'function')) { + if (!(isObjectNotArray(chrome.commands) && typeof chrome.commands.getAll === 'function')) { resolve([]); return; } |