summaryrefslogtreecommitdiffstats
path: root/js/service/Publisher.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/service/Publisher.js')
-rw-r--r--js/service/Publisher.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/service/Publisher.js b/js/service/Publisher.js
index dd420f629..9e17e1494 100644
--- a/js/service/Publisher.js
+++ b/js/service/Publisher.js
@@ -29,7 +29,7 @@ app.service('Publisher', function () {
this.publishAll = (data) => {
for (let [channel, messages] of items(data)) {
if (this.channels[channel] !== undefined) {
- for (let listener of this.channels[channel]) {
+ for(let listener of this.channels[channel]) {
listener.receive(messages, channel);
}
}