mod_pep: Correct initialization of fallback service

I'm not sure what went wrong here, copy-paste mistake?
Doesn't matter as long as nobody can create nodes on this service.
This commit is contained in:
Kim Alvefur 2022-02-03 09:46:19 +01:00
parent 70598062e3
commit e4344283cd

View file

@ -193,14 +193,12 @@ local function get_subscriber_filter(username)
end
local nobody_service = pubsub.new({
service = pubsub.new({
node_defaults = {
["max_items"] = 1;
["persist_items"] = false;
["access_model"] = "presence";
["send_last_published_item"] = "on_sub_and_presence";
};
});
node_defaults = {
["max_items"] = 1;
["persist_items"] = false;
["access_model"] = "presence";
["send_last_published_item"] = "on_sub_and_presence";
};
});
function get_pep_service(username)