Commit 5579e82f authored by JC Brand's avatar JC Brand

Add missing parameter

parent 4927d561
......@@ -11,6 +11,5 @@ install: make node_modules
services:
- xvfb
before_script:
- make serve_bg
- export DISPLAY=:99.0
script: make check ARGS=--single-run
......@@ -384,7 +384,7 @@ converse.plugins.add('converse-minimize', {
this.render();
await this.initToggle();
const chats = this.model.where({'minimized': true});
chats.length && this.addMultipleChats();
chats.length && this.addMultipleChats(chats);
this.listenTo(this.model, "add", this.onChanged)
this.listenTo(this.model, "destroy", this.removeChat)
this.listenTo(this.model, "change:minimized", this.onChanged)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment