Merge pull request #2668 from blueyed/fix-naughty

Fix extra newline with legacy naughty layout
This commit is contained in:
mergify[bot] 2019-02-18 14:52:26 +00:00 committed by GitHub
commit 2d0a35c37d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -131,9 +131,8 @@ local escape_subs = { ['<'] = "&lt;", ['>'] = "&gt;", ['&'] = "&amp;" }
-- Cache the markup
local function set_escaped_text(self)
local text, title = self.message or "", self.title or ""
if title then title = title .. "\n" else title = "" end
local text = self.message or ""
local title = self.title and self.title .. "\n" or ""
local textbox = self.textbox