# HG changeset patch # User Matthew Wild # Date 1275183423 -3600 # Node ID b416751df2ca8b4d655f41bad964dd9f0d08c702 # Parent 1649a6022adb975f6d016adcfc6081cd8472dbda verse.plugins.session: Convert from spaces to tabs diff -r 1649a6022adb -r b416751df2ca plugins/session.lua --- a/plugins/session.lua Fri May 28 23:32:16 2010 +0100 +++ b/plugins/session.lua Sun May 30 02:37:03 2010 +0100 @@ -2,19 +2,19 @@ local xmlns_session = "urn:ietf:params:xml:ns:xmpp-session"; function verse.plugins.session(stream) - local function handle_binding(jid) - stream:debug("Establishing Session..."); - stream:send_iq(st.iq({ type = "set" }):tag("session", {xmlns=xmlns_session}), - function (reply) - if reply.attr.type == "result" then - stream:event("session-success"); - elseif reply.attr.type == "error" then - local err = reply:child_with_name("error"); - local type, condition, text = reply:get_error(); - stream:event("session-failure", { error = condition, text = text, type = type }); - end - end); - end - stream:hook("binding-success", handle_binding); - return true; + local function handle_binding(jid) + stream:debug("Establishing Session..."); + stream:send_iq(st.iq({ type = "set" }):tag("session", {xmlns=xmlns_session}), + function (reply) + if reply.attr.type == "result" then + stream:event("session-success"); + elseif reply.attr.type == "error" then + local err = reply:child_with_name("error"); + local type, condition, text = reply:get_error(); + stream:event("session-failure", { error = condition, text = text, type = type }); + end + end); + end + stream:hook("binding-success", handle_binding); + return true; end