mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
70598062e3
commit
e4344283cd
1 changed files with 6 additions and 8 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue