Software /
code /
prosody
Changeset
10665:69acda92d5a9 0.11
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.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 24 Feb 2020 23:16:08 +0100 |
parents | 10655:ee6c12264420 |
children | 10666:dfc8257d8445 10670:5376f882cf82 |
files | util/datamanager.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/util/datamanager.lua Sat Feb 22 16:23:43 2020 +0100 +++ b/util/datamanager.lua Mon Feb 24 23:16:08 2020 +0100 @@ -320,7 +320,7 @@ 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