mod_bosh: Don't log response XML
[prosody.git] / plugins / mod_vcard.lua
index 0efc16383b87b1686d8bd4f8aa57e952229a916f..6bf82ee7e484d6afa9cfc5632758096ba8789cec 100644 (file)
@@ -51,7 +51,7 @@ if module:get_option("vcard_compatibility") then
        module:hook("iq/full", function(data)
                local stanza = data.stanza;
                local payload = stanza.tags[1];
-               if stanza.attr.type == "get" or stanza.attr.type == "set" and payload.name == "vCard" and payload.attr.xmlns == "vcard-temp" then
+               if stanza.attr.type == "get" and payload.name == "vCard" and payload.attr.xmlns == "vcard-temp" then
                        return handle_vcard(data);
                end
        end, 1);