# HG changeset patch # User Kim Alvefur # Date 1343599119 -7200 # Node ID 7816f24d0fdc88f0ef1c082002b93ef058045ca5 # Parent 3115bd81b9de882da674f4bf24f6bbf44f47efb6 clix.roster: Switch order of name and jid in the list command diff -r 3115bd81b9de -r 7816f24d0fdc clix/roster.lua --- a/clix/roster.lua Wed Jul 04 07:51:35 2012 +0200 +++ b/clix/roster.lua Sun Jul 29 23:58:39 2012 +0200 @@ -71,7 +71,7 @@ local name, host = item.name or split_jid(jid); local groups = table.concat(item.groups or {}, ", "); if not param or ( (name and name:match(param)) or jid:match(param) ) then - print(name or host, jid, groups); + print(jid, name or host, groups); end end end;