mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.datamanager: Fix iterating over "users" (thanks marc0s)
The 'store' path componend used to be unescaped until 756a2a00e7e7 added escaping to address issues with characters like '/' used in PEP, but with a special case for '_' which was already in common use in 'store' path components. Missed adding this escaping here.
This commit is contained in:
parent
6e53a3a601
commit
d8fda82e40
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ local type_map = {
|
|||
|
||||
local function users(host, store, typ) -- luacheck: ignore 431/store
|
||||
typ = type_map[typ or "keyval"];
|
||||
local store_dir = format("%s/%s/%s", data_path, encode(host), store);
|
||||
local store_dir = format("%s/%s/%s", data_path, encode(host), store_encode(store));
|
||||
|
||||
local mode, err = lfs.attributes(store_dir, "mode");
|
||||
if not mode then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue