diff options
author | Kim Alvefur <zash@zash.se> | 2020-02-24 23:33:53 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-02-24 23:33:53 +0100 |
commit | f50d8689147238ae9cd383c1bd83cbc542f8e5b7 (patch) | |
tree | 9f4e055282a28c537f8075059da4d559d67eb580 | |
parent | 1c68c0e36cb05b880857246cd0fc851384ab6520 (diff) | |
parent | ca18226ee980d3a4c961e1a18d9fa132562bab93 (diff) | |
download | prosody-f50d8689147238ae9cd383c1bd83cbc542f8e5b7.tar.gz prosody-f50d8689147238ae9cd383c1bd83cbc542f8e5b7.zip |
Merge 0.11->trunk
-rw-r--r-- | util/datamanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/datamanager.lua b/util/datamanager.lua index 1c578fee..26dede08 100644 --- a/util/datamanager.lua +++ b/util/datamanager.lua @@ -321,7 +321,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 |