diff options
author | Florrie <towerofnix@gmail.com> | 2019-07-19 16:06:13 -0300 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2019-07-19 16:06:13 -0300 |
commit | 589c5d276b4cb85b060ad01acae39d049a8245a4 (patch) | |
tree | 3f602752086c5ddd8c96d31808caab56d7856398 | |
parent | cdff9f0c47ca8cb24d7f61de51856c3d05f39adc (diff) |
Don't crash when the queue is clicked!
-rw-r--r-- | ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.js b/ui.js index 4bd6d2b..7df03db 100644 --- a/ui.js +++ b/ui.js @@ -2192,7 +2192,7 @@ class PathItemElement extends FocusElement { class QueueListingElement extends GrouplikeListingElement { getNewForm() { - return new QueueListingForm() + return new QueueListingForm(this.app) } keyPressed(keyBuf) { |