mod_dialback: Split long line [luacheck]

This commit is contained in:
Kim Alvefur 2018-02-04 01:16:28 +01:00
parent c1362a6093
commit a15eb17b9c

View file

@ -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 })