# HG changeset patch # User Matthew Wild # Date 1278096908 -3600 # Node ID 9bcf8d612a5207536b6990027395df73722e01e3 # Parent 88cfe1bba69047c1e9b101fb9ce4be3882945467 mod_privacy: Return the correct item-not-found instead of bad-request when a non-existent list is activated by the client (thanks teo) diff -r 88cfe1bba690 -r 9bcf8d612a52 plugins/mod_privacy.lua --- a/plugins/mod_privacy.lua Fri Jul 02 17:24:40 2010 +0100 +++ b/plugins/mod_privacy.lua Fri Jul 02 19:55:08 2010 +0100 @@ -93,8 +93,10 @@ elseif which == "active" and list then origin.activePrivacyList = name; origin.send(st.reply(stanza)); + elseif not list then + return {"cancel", "item-not-found", "No such list: "..name}; else - return {"modify", "bad-request", "Either not active or default given or unknown list name specified."}; + return {"modify", "bad-request", "No list chosen to be active or default."}; end return true; end