diff options
author | Kim Alvefur <zash@zash.se> | 2019-12-24 00:27:44 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-12-24 00:27:44 +0100 |
commit | c37b1cc072dbc1470997d226f447098848c60df9 (patch) | |
tree | 78a2672e6d49445d1119eb8966b4cb7a0d3a5798 | |
parent | 669ca29966bf80b02237ff9581ff264377f67707 (diff) | |
download | prosody-c37b1cc072dbc1470997d226f447098848c60df9.tar.gz prosody-c37b1cc072dbc1470997d226f447098848c60df9.zip |
mod_mam: Schedule cleanup again if unable to delete messages
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index df5d925a..fd319486 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 |