PubSub: Use configured 'max_items' by default

If clients don't ask for a specific 'max_items' limit, use the value of
mod_pubsub's 'max_items_node' option as default, rather than the
hard-coded ?MAXITEMS value.  This makes sure clients cannot circumvent a
smaller, configured limit.
This commit is contained in:
Holger Weiss 2021-07-28 18:53:15 +02:00
parent 103e98b8da
commit 2050cdffb4
1 changed files with 1 additions and 1 deletions

View File

@ -3406,7 +3406,7 @@ max_items(Host, Options) ->
case get_option(Options, max_items) of
I when is_integer(I), I < 0 -> 0;
I when is_integer(I) -> I;
_ -> ?MAXITEMS
_ -> get_max_items_node(Host)
end;
false ->
case get_option(Options, send_last_published_item) of