comparison mod_bookmarks2/mod_bookmarks2.lua @ 4846:ad7767a9f3ea

mod_bookmarks2: Fix check for max_items=max support This function does not throw, it just returns a boolean.
author Kim Alvefur <zash@zash.se>
date Tue, 04 Jan 2022 23:00:04 +0100
parents 6e17df6becec
children 5001104f0275
comparison
equal deleted inserted replaced
4845:6e17df6becec 4846:ad7767a9f3ea
18 ["max_items"] = "max"; 18 ["max_items"] = "max";
19 ["send_last_published_item"] = "never"; 19 ["send_last_published_item"] = "never";
20 ["access_model"] = "whitelist"; 20 ["access_model"] = "whitelist";
21 }; 21 };
22 22
23 if not pcall(mod_pep.check_node_config, nil, nil, default_options) then 23 if not mod_pep.check_node_config(nil, nil, default_options) then
24 -- 0.11 or earlier not supporting max_items="max" trows an error here 24 -- 0.11 or earlier not supporting max_items="max" trows an error here
25 module:log("debug", "Setting max_items=pep_max_items because 'max' is not supported in this version"); 25 module:log("debug", "Setting max_items=pep_max_items because 'max' is not supported in this version");
26 default_options["max_items"] = module:get_option_number("pep_max_items", 256); 26 default_options["max_items"] = module:get_option_number("pep_max_items", 256);
27 end 27 end
28 28