Merge 0.10->trunk

This commit is contained in:
Kim Alvefur 2017-01-26 19:47:33 +01:00
commit 4c6a84a00e
5 changed files with 12 additions and 18 deletions

View file

@ -39,8 +39,6 @@ local listener = {};
local runner_callbacks = {};
module:hook("stats-update", function ()
-- Connection counter resets to 0 on load and reload
-- Bump it up to current value
local count = 0;
for _ in pairs(sessions) do
count = count + 1;
@ -96,8 +94,8 @@ function stream_callbacks.streamopened(session, attr)
if features.tags[1] or session.full_jid then
send(features);
else
(session.log or log)("warn", "No features to offer");
session:close{ condition = "undefined-condition", text = "No features to proceed with" };
(session.log or log)("warn", "No stream features to offer");
session:close{ condition = "undefined-condition", text = "No stream features to proceed with" };
end
end