From 030dcf801a62652f1d1ac6670fd452f9c5473f3f Mon Sep 17 00:00:00 2001 From: Athozus Date: Sun, 2 Apr 2023 19:00:25 +0200 Subject: [PATCH] Fix line too long luacheck --- ui/compose.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/compose.lua b/ui/compose.lua index eccc6e3..06080f5 100644 --- a/ui/compose.lua +++ b/ui/compose.lua @@ -45,7 +45,8 @@ minetest.register_on_player_receive_fields(function(player, formname, fields) if msg_id[name] then id = msg_id[name] end - if (fields.to == "" and fields.cc == "" and fields.bcc == "") or fields.body == "" then -- if mail is invalid then store it as a draft + if (fields.to == "" and fields.cc == "" and fields.bcc == "") or fields.body == "" then + -- if mail is invalid then store it as a draft local id = mail.new_uuid() if msg_id[name] then id = msg_id[name]