diff options
author | Kim Alvefur <zash@zash.se> | 2017-12-05 12:26:57 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-12-05 12:26:57 +0100 |
commit | 7d8163b9f9863e2fecdc630384ddf526bd5fe513 (patch) | |
tree | e3a18df192b8348e983f6307490eafc8d8a60782 | |
parent | 2c3887aa026cf8cab9f9bf7cd8a46185b6261696 (diff) | |
download | prosody-7d8163b9f9863e2fecdc630384ddf526bd5fe513.tar.gz prosody-7d8163b9f9863e2fecdc630384ddf526bd5fe513.zip |
mod_dialback: Split long line [luacheck]
-rw-r--r-- | plugins/mod_dialback.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_dialback.lua b/plugins/mod_dialback.lua index dcbf9448..e16c9e8b 100644 --- a/plugins/mod_dialback.lua +++ b/plugins/mod_dialback.lua @@ -153,7 +153,8 @@ module:hook("stanza/jabber:server:dialback:verify", function(event) valid = "invalid"; end if dialback_verifying.destroyed then - log("warn", "Incoming s2s session %s was closed in the meantime, so we can't notify it of the db result", tostring(dialback_verifying):match("%w+$")); + log("warn", "Incoming s2s session %s was closed in the meantime, so we can't notify it of the db result", + tostring(dialback_verifying):match("%w+$")); else dialback_verifying.sends2s( st.stanza("db:result", { from = attr.to, to = attr.from, id = attr.id, type = valid }) |