changeset 6545:3b605bfc94aa

mod_storage_xmlarchive: Fix purge method (thanks MattJ) Was returning after reaching the inner loop without proceeding to inspect other stores.
author Kim Alvefur <zash@zash.se>
date Sun, 24 May 2026 19:15:11 +0200
parents 981c14bb8975
children 8a4e6421fd24
files mod_storage_xmlarchive/mod_storage_xmlarchive.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);