# HG changeset patch # User Matthew Wild # Date 1680791089 -3600 # Node ID 5806e05346b82ff5309ddd91fe18d123772cfaa0 # Parent 09656e2b4927c0c4d1c726474350ab0d8e1499e3 mod_client_management: Improve representation of authentication methods diff -r 09656e2b4927 -r 5806e05346b8 mod_client_management/mod_client_management.lua --- a/mod_client_management/mod_client_management.lua Thu Apr 06 15:22:10 2023 +0100 +++ b/mod_client_management/mod_client_management.lua Thu Apr 06 15:24:49 2023 +0100 @@ -404,7 +404,7 @@ id = client.id; software = client.user_agent and client.user_agent.software; last_seen = os.date("%Y-%m-%d", client.last_seen); - auth_methods = array.collect(it.keys(client.active)):sort(); + auth_methods = array.collect(it.keys(client.active)):sort():concat(", "); })); end print(string.rep("-", self.session.width));