# HG changeset patch # User Kim Alvefur # Date 1779642911 -7200 # Node ID 3b605bfc94aa57da37b799a4702fe240cecae5f8 # Parent 981c14bb8975e0a47f8a846bca6b81698f246528 mod_storage_xmlarchive: Fix purge method (thanks MattJ) Was returning after reaching the inner loop without proceeding to inspect other stores. diff -r 981c14bb8975 -r 3b605bfc94aa mod_storage_xmlarchive/mod_storage_xmlarchive.lua --- a/mod_storage_xmlarchive/mod_storage_xmlarchive.lua Thu May 21 18:32:31 2026 +0100 +++ b/mod_storage_xmlarchive/mod_storage_xmlarchive.lua Sun May 24 19:15:11 2026 +0200 @@ -467,9 +467,9 @@ end end end - return true; end end + return true; end module:provides("storage", provider);