aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-06-05 21:35:50 +0100
committerMatthew Wild <mwild1@gmail.com>2013-06-05 21:35:50 +0100
commit9c877dbe930137f5e4507da798fdd91135e8af9e (patch)
treeea3b6bbe9fbe13f489b7b84c477b5015e3d23654 /plugins
parentdb6bac3d850c937ca1a407e79f942db3e3a52017 (diff)
downloadprosody-9c877dbe930137f5e4507da798fdd91135e8af9e.tar.gz
prosody-9c877dbe930137f5e4507da798fdd91135e8af9e.zip
mod_bosh: Reset creating_session to prevent putting unnecessary attributes into every BOSH response
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_bosh.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua
index 184da321..8c084c95 100644
--- a/plugins/mod_bosh.lua
+++ b/plugins/mod_bosh.lua
@@ -284,6 +284,7 @@ function stream_callbacks.streamopened(context, attr)
sid = sid;
};
if creating_session then
+ creating_session = nil;
body_attr.inactivity = tostring(BOSH_DEFAULT_INACTIVITY);
body_attr.polling = tostring(BOSH_DEFAULT_POLLING);
body_attr.requests = tostring(BOSH_DEFAULT_REQUESTS);