mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +01:00
modules/console: Fix users cmd default condition.
This commit is contained in:
parent
af821a9e3b
commit
f8137c50d0
1 changed files with 1 additions and 1 deletions
|
@ -13992,7 +13992,7 @@ console_cmd__users(opt &out, const string_view &line)
|
|||
query
|
||||
};
|
||||
|
||||
if(!query || query != "*")
|
||||
if(!query)
|
||||
opts.hostpart = my_host();
|
||||
|
||||
m::users::for_each(opts, [&out]
|
||||
|
|
Loading…
Reference in a new issue