mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_pep_plus: Fix a typo.
This commit is contained in:
parent
8e69673305
commit
48726b9585
1 changed files with 2 additions and 2 deletions
|
@ -416,7 +416,7 @@ module:hook("account-disco-info", function(event)
|
||||||
local username = jid_split(reply.attr.from) or origin.username;
|
local username = jid_split(reply.attr.from) or origin.username;
|
||||||
local service = get_pep_service(username);
|
local service = get_pep_service(username);
|
||||||
|
|
||||||
local suppored_features = lib_pubsub.get_feature_set(service) + set.new{
|
local supported_features = lib_pubsub.get_feature_set(service) + set.new{
|
||||||
-- Features not covered by the above
|
-- Features not covered by the above
|
||||||
"access-presence",
|
"access-presence",
|
||||||
"auto-subscribe",
|
"auto-subscribe",
|
||||||
|
@ -427,7 +427,7 @@ module:hook("account-disco-info", function(event)
|
||||||
"presence-subscribe",
|
"presence-subscribe",
|
||||||
};
|
};
|
||||||
|
|
||||||
for feature in suppored_features do
|
for feature in supported_features do
|
||||||
reply:tag('feature', {var=xmlns_pubsub.."#"..feature}):up();
|
reply:tag('feature', {var=xmlns_pubsub.."#"..feature}):up();
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue