diff mod_storage_xmlarchive/mod_storage_xmlarchive.lua @ 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 5fb466693e85
children 8a4e6421fd24
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);