diff options
author | Clombrong <cromblong@egregore.fun> | 2025-06-25 00:52:47 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-06-25 00:52:47 +0200 |
commit | 0bcd2a720322802bbea31bc5112fa92a1e08ddbb (patch) | |
tree | ff9530506b91596dcff0f8ed46abe653f84c186a | |
parent | 8b73d84b8f9bd5c8563e25470e319d464b5c2a6d (diff) |
feat(websockets_hello): add preferred auth methodsv0.0.2
-rw-r--r-- | test/js/websockets_hello.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/websockets_hello.ml b/test/js/websockets_hello.ml index 952be45..edcfb62 100644 --- a/test/js/websockets_hello.ml +++ b/test/js/websockets_hello.ml @@ -30,7 +30,7 @@ let () = let config : Sasl.auth_config = { jid = (Sys.getenv "FLESH_JID"); password = (Sys.getenv "FLESH_PASSWORD"); - preferred_mechanisms = [] + preferred_mechanisms = [Stream.PLAIN] } in let domain = (List.nth (String.split_on_char '@' config.jid) 1) in let* stream, push = Stream.start domain in |