diff options
author | Jonas Schäfer <jonas@wielicki.name> | 2024-11-16 09:20:29 +0100 |
---|---|---|
committer | Jonas Schäfer <jonas@wielicki.name> | 2024-11-16 09:20:29 +0100 |
commit | b9f73bc7240b87e537f141cf0a4f4c1bef219c3e (patch) | |
tree | 84e2a9b1ec9824e0686117a4eb8f9f8c6e0d55a4 /util | |
parent | 9f53fd30a9647f63209273a39c384e3e6807ecce (diff) | |
download | prosody-b9f73bc7240b87e537f141cf0a4f4c1bef219c3e.tar.gz prosody-b9f73bc7240b87e537f141cf0a4f4c1bef219c3e.zip |
util.datamanager: fix duplicated word in log message
Diffstat (limited to 'util')
-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 4269e5d1..8192d12a 100644 --- a/util/datamanager.lua +++ b/util/datamanager.lua @@ -509,7 +509,7 @@ end local function list_open(username, host, datastore) if not index_magic then - log("debug", "Falling back from lazy loading to to loading full list for %s storage for user: %s@%s", datastore, username or "nil", host or "nil"); + log("debug", "Falling back from lazy loading to loading full list for %s storage for user: %s@%s", datastore, username or "nil", host or "nil"); return list_load(username, host, datastore); end local filename = getpath(username, host, datastore, "list"); |