# HG changeset patch # User Kim Alvefur # Date 1641333604 -3600 # Node ID ad7767a9f3ea31e41111c22850e6ab116dfc8bf9 # Parent 6e17df6bececf36f08f1b1d90edf053f4f2b671e mod_bookmarks2: Fix check for max_items=max support This function does not throw, it just returns a boolean. diff -r 6e17df6becec -r ad7767a9f3ea mod_bookmarks2/mod_bookmarks2.lua --- a/mod_bookmarks2/mod_bookmarks2.lua Tue Jan 04 22:59:24 2022 +0100 +++ b/mod_bookmarks2/mod_bookmarks2.lua Tue Jan 04 23:00:04 2022 +0100 @@ -20,7 +20,7 @@ ["access_model"] = "whitelist"; }; -if not pcall(mod_pep.check_node_config, nil, nil, default_options) then +if not mod_pep.check_node_config(nil, nil, default_options) then -- 0.11 or earlier not supporting max_items="max" trows an error here module:log("debug", "Setting max_items=pep_max_items because 'max' is not supported in this version"); default_options["max_items"] = module:get_option_number("pep_max_items", 256);