From 9dba1b373680899a543e0151efa4008d58ec3277 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 25 May 2021 17:03:29 +0200 Subject: [PATCH] Add vendor prefix to bouncer-networks BATCH type --- lib/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client.js b/lib/client.js index 48ff69d..f77122f 100644 --- a/lib/client.js +++ b/lib/client.js @@ -478,7 +478,7 @@ export default class Client extends EventTarget { } var req = { command: "BOUNCER", params: ["LISTNETWORKS"] }; - return this.fetchBatch(req, "bouncer-networks").then((batch) => { + return this.fetchBatch(req, "soju.im/bouncer-networks").then((batch) => { var networks = new Map(); for (var msg of batch.messages) { console.assert(msg.command === "BOUNCER" && msg.params[0] === "NETWORK");