diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-10-14 10:58:11 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-10-14 10:58:11 +0100 |
commit | a211c6772706424c5fb8d19ea2de2c0e0af10da4 (patch) | |
tree | 72dc9562e9fda9ddf2d220f6ccf61b48a07230ec | |
parent | d68a8ec44de50ec5e0e5954c2211109b3f374b5a (diff) | |
download | prosody-a211c6772706424c5fb8d19ea2de2c0e0af10da4.tar.gz prosody-a211c6772706424c5fb8d19ea2de2c0e0af10da4.zip |
mod_pubsub: Fix error type of 'forbidden' (change from 'cancel' to 'auth')
-rw-r--r-- | plugins/mod_pubsub.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pubsub.lua b/plugins/mod_pubsub.lua index 926ed4f2..04f2b615 100644 --- a/plugins/mod_pubsub.lua +++ b/plugins/mod_pubsub.lua @@ -39,7 +39,7 @@ local pubsub_errors = { ["nodeid-required"] = { "modify", "bad-request", nil, "nodeid-required" }; ["item-not-found"] = { "cancel", "item-not-found" }; ["not-subscribed"] = { "modify", "unexpected-request", nil, "not-subscribed" }; - ["forbidden"] = { "cancel", "forbidden" }; + ["forbidden"] = { "auth", "forbidden" }; }; function pubsub_error_reply(stanza, error) local e = pubsub_errors[error]; |