diff --git a/lovebird.lua b/lovebird.lua index 0a6cbfc..265a7cc 100644 --- a/lovebird.lua +++ b/lovebird.lua @@ -504,14 +504,16 @@ function lovebird.recalcbuffer() str = lovebird.htmlescape(line.str):gsub("\n", "
") end if line.type == "input" then - str = '∙∙' .. str .. '' - end - if line.count > 1 then - str = '' .. line.count .. ' ' .. str - end - if lovebird.timestamp then - str = os.date('%H:%M:%S ', line.time) .. - str + str = '∙∙∙ ' .. + str .. '' + else + if line.count > 1 then + str = '' .. line.count .. ' ' .. str + end + if lovebird.timestamp then + str = os.date('%H:%M:%S ', line.time) .. + str + end end return str end