aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-12-24 00:27:44 +0100
committerKim Alvefur <zash@zash.se>2019-12-24 00:27:44 +0100
commitc37b1cc072dbc1470997d226f447098848c60df9 (patch)
tree78a2672e6d49445d1119eb8966b4cb7a0d3a5798
parentmod_mam: Log error when unable to delete old messages (fix #1479) [luacheck] (diff)
downloadprosody-c37b1cc072dbc1470997d226f447098848c60df9.tar.xz
prosody-c37b1cc072dbc1470997d226f447098848c60df9.zip
mod_mam: Schedule cleanup again if unable to delete messages
-rw-r--r--plugins/mod_mam/mod_mam.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua
index df5d925a2..fd319486c 100644
--- a/plugins/mod_mam/mod_mam.lua
+++ b/plugins/mod_mam/mod_mam.lua
@@ -388,6 +388,7 @@ if cleanup_after ~= "never" then
num_users = num_users + 1;
sum = sum + (tonumber(ok) or 0);
else
+ cleanup_map:set(cut_off, user, true);
module:log("error", "Could not delete messages for user '%s': %s", user, err);
end
end