git » sdk » commit bd3a6b6

FAST isn't in release strophe yet

author Stephen Paul Weber
2026-01-14 21:24:24 UTC
committer Stephen Paul Weber
2026-01-14 21:24:24 UTC
parent e65f0a80a17a696eaf191d128442cf736bfe4974

FAST isn't in release strophe yet

borogove/streams/XmppStropheStream.hx +1 -7

diff --git a/borogove/streams/XmppStropheStream.hx b/borogove/streams/XmppStropheStream.hx
index e2a428b..e120db7 100644
--- a/borogove/streams/XmppStropheStream.hx
+++ b/borogove/streams/XmppStropheStream.hx
@@ -216,13 +216,7 @@ class XmppStropheStream extends GenericStream {
 		this.on("auth/password", function (event) {
 			final o = this;
 			final pass = event.password;
-			if (event.fastCount != null) {
-				StropheConn.set_fast(conn, NativeString.c_str(pass), event.fastCount);
-			} else {
-				StropheConn.set_pass(conn, NativeString.c_str(pass));
-				StropheConn.set_fast(conn, null, -1);
-			}
-			StropheConn.set_user_agent_id(conn, NativeString.c_str(clientId));
+			StropheConn.set_pass(conn, NativeString.c_str(pass));
 			StropheConn.connect_client(
 				this.conn,
 				null,