diff options
author | Clombrong <cromblong@egregore.fun> | 2025-06-10 01:43:32 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-06-10 01:43:32 +0200 |
commit | d29757247f2e7a99c16eeb10c9bb0e9f1b672432 (patch) | |
tree | 791ab762e9bf7164f9d3f794c1a6a1b6f9f533dc /lib | |
parent | 0b14c14284c8235008810ffed6e3028023d2e0e2 (diff) |
fix(auth): derive show without path
Diffstat (limited to 'lib')
-rw-r--r-- | lib/auth.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/auth.ml b/lib/auth.ml index 851db40..0e5d77c 100644 --- a/lib/auth.ml +++ b/lib/auth.ml @@ -1,6 +1,6 @@ open Lwt.Syntax -type auth_mechanism = PLAIN [@@deriving show] +type auth_mechanism = PLAIN [@@deriving show { with_path = false }] let authenticate (stream, _push) = let _gen_auth jid pass = function |