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 | a4c470cbede5c8c5b3c7f74c04e4e727ab2b72e6 (patch) | |
tree | e3a18df192b8348e983f6307490eafc8d8a60782 /plugins | |
parent | d5ca275f64ef6bf2f946cfd56498b62b345c798b (diff) | |
download | prosody-a4c470cbede5c8c5b3c7f74c04e4e727ab2b72e6.tar.gz prosody-a4c470cbede5c8c5b3c7f74c04e4e727ab2b72e6.zip |
mod_dialback: Split long line [luacheck]
Diffstat (limited to 'plugins')
-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 }) |