Mercurial > prosody-modules
view mod_compat_vcard/mod_compat_vcard.lua @ 910:c469a2b2d77d
mod_websocket: Avoid floating point division
The problem here was that Lua's integer conversion (rounding?) routines
behave differently on x86 vs. x86_64 (and even on those there can be
minor differenes). Usually the former does proper rounding,
while the later floors.
author | Florian Zeitz <florob@babelmonkeys.de> |
---|---|
date | Fri, 15 Feb 2013 01:32:03 +0100 |
parents | 1a7cdc874b8c |
children | 3df303543765 |
line wrap: on
line source
-- Compatibility with clients and servers (i.e. ejabberd) that send vcard -- requests to the full JID -- -- https://support.process-one.net/browse/EJAB-1045 local jid_bare = require "util.jid".bare; local st = require "util.stanza"; local core_process_stanza = prosody.core_process_stanza; module:hook("iq/full", function(event) local stanza = event.stanza; local payload = stanza.tags[1]; if payload.name == "vCard" and stanza.attr.type == "get" and payload.attr.xmlns == "vcard-temp" then local fixed_stanza = st.clone(event.stanza); fixed_stanza.attr.to = jid_bare(stanza.attr.to); core_process_stanza(event.origin, fixed_stanza); return true; end end, 1);