summaryrefslogtreecommitdiff
path: root/xmpp/xml.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-07-04 14:25:21 +0200
committerxengineering <me@xengineering.eu>2023-07-04 14:26:01 +0200
commit3a5e9fce02264eeed884b15781593479fda9296a (patch)
tree96fc5facb359c70c26623621f6022202f994054f /xmpp/xml.go
parent1d3dfa5b93000bc4109ba49ea018e72fbf4f5753 (diff)
downloadlimox-3a5e9fce02264eeed884b15781593479fda9296a.tar
limox-3a5e9fce02264eeed884b15781593479fda9296a.tar.zst
limox-3a5e9fce02264eeed884b15781593479fda9296a.zip
Rework routing completely
Diffstat (limited to 'xmpp/xml.go')
-rw-r--r--xmpp/xml.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp/xml.go b/xmpp/xml.go
index 470a2ef..e6fccee 100644
--- a/xmpp/xml.go
+++ b/xmpp/xml.go
@@ -27,7 +27,7 @@ func runRx(ctx context.Context, chn chan<- any, conn *tls.Conn) {
if e.Name.Local == "stream" {
// new server-side stream TODO what to do with this info?
} else {
- route(&e, d, chn, getRoutingTable())
+ route(&e, d, chn)
}
case xml.EndElement:
if e.Name.Local == "stream" {