Software /
code /
prosody
Diff
plugins/mod_c2s.lua @ 7868:11fcdef5022f
Merge 0.10->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 26 Jan 2017 19:47:33 +0100 |
parent | 7666:03aa330562ed |
parent | 7866:b6d99132d7dc |
child | 7957:083c062c2fb7 |
line wrap: on
line diff
--- a/plugins/mod_c2s.lua Tue Jan 24 21:24:03 2017 +0100 +++ b/plugins/mod_c2s.lua Thu Jan 26 19:47:33 2017 +0100 @@ -39,8 +39,6 @@ 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 @@ 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