comparison mod_password_reset/mod_password_reset.lua @ 4976:75b6e5df65f9

various: Improve error reporting if missing file server module on 0.12 If there is some error loading net.http.files then it would be swallowed by the pcall and then it would proceed to trying mod_http_files, which might cause unexpected behavior on 0.12 Ref #1765
author Kim Alvefur <zash@zash.se>
date Mon, 18 Jul 2022 22:47:54 +0200
parents 7fc6a63c3bd0
children
comparison
equal deleted inserted replaced
4975:733e5513f691 4976:75b6e5df65f9
12 local reset_tokens = module:open_store(); 12 local reset_tokens = module:open_store();
13 13
14 local max_token_age = module:get_option_number("password_reset_validity", 86400); 14 local max_token_age = module:get_option_number("password_reset_validity", 86400);
15 15
16 local serve; 16 local serve;
17 if not pcall(function () 17 if prosody.process_type == "prosody" then
18 local http_files = require "net.http.files"; 18 local http_files = require "net.http.files";
19 serve = http_files.serve; 19 serve = http_files.serve;
20 end) then 20 else
21 serve = module:depends"http_files".serve; 21 serve = module:depends"http_files".serve;
22 end 22 end
23 23
24 module:depends("adhoc"); 24 module:depends("adhoc");
25 module:depends("http"); 25 module:depends("http");