| author | Stephen Paul Weber
<singpolyma@singpolyma.net> 2023-11-20 21:00:35 UTC |
| committer | Stephen Paul Weber
<singpolyma@singpolyma.net> 2023-11-20 21:00:35 UTC |
| parent | 3ac3085839a403f683a00a76a09707cb069f70d6 |
| xmpp/Chat.hx | +1 | -1 |
diff --git a/xmpp/Chat.hx b/xmpp/Chat.hx index 9240ce0..219fe73 100644 --- a/xmpp/Chat.hx +++ b/xmpp/Chat.hx @@ -376,7 +376,7 @@ class Channel extends Chat { final err = response.getChild("error")?.getChild(null, "urn:ietf:params:xml:ns:xmpp-stanzas"); if (err.name == "service-unavailable" || err.name == "feature-not-implemented") return; // Error, success! if (err.name == "remote-server-not-found" || err.name == "remote-server-timeout") return; // Timeout, retry later - if (err.name == "item-not-found") return; // Nick was changed? + //if (err.name == "item-not-found") return; // Nick was changed so change it back! (shouldRefreshDisco ? refreshDisco : (cb)->cb())(() -> { presence = {}; // About to ask for a fresh set inSync = false;