diff mod_invites_page/mod_invites_page.lua @ 4975:733e5513f691

various: Use 0.12+ API for serving files from the file system over HTTP Using mod_http_files this way is deprecated. Having the base behavior in a separate module makes it easier to have a specialized module with coherent behavior that does not do things when not explicitly enabled.
author Kim Alvefur <zash@zash.se>
date Mon, 18 Jul 2022 13:58:27 +0200
parents 2c47b8110c48
children 75b6e5df65f9
line wrap: on
line diff
--- a/mod_invites_page/mod_invites_page.lua	Mon Jul 11 20:08:41 2022 +0200
+++ b/mod_invites_page/mod_invites_page.lua	Mon Jul 18 13:58:27 2022 +0200
@@ -33,7 +33,11 @@
 	-- Load HTTP-serving dependencies
 	if prosody.shutdown then -- not if running under prosodyctl
 		module:depends("http");
-		http_files = module:depends("http_files");
+		if not pcall(function ()
+			http_files = require "net.http.files";
+		end) then
+			http_files = module:depends"http_files";
+		end
 	end
 	-- Calculate automatic base_url default
 	base_url = module.http_url and module:http_url();