From 92535fae244959fffaa2c88b4a8f07b5de1b3480 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 25 May 2021 17:11:06 +0200 Subject: [PATCH] Ignore BOUNCER NETWORK messages if we're already bound to a network --- components/app.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/app.js b/components/app.js index d83022f..44e27f0 100644 --- a/components/app.js +++ b/components/app.js @@ -750,6 +750,12 @@ export default class App extends Component { break; // We're only interested in network updates } + if (client.isupport.has("BOUNCER_NETID")) { + // This cn happen if the user has specified a network to bind + // to via other means, e.g. "/". + break; + } + var id = msg.params[1]; var attrs = null; if (msg.params[2] !== "*") {