Merge pull request #1389 from Applevangelist/patch-14

Taskinfo.lua - Issue #1388 - don't just assume this is a string
This commit is contained in:
Frank
2020-12-01 18:07:40 +01:00
committed by GitHub

View File

@@ -344,7 +344,9 @@ function TASKINFO:Report( Report, Detail, ReportGroup, Task )
Text = DataText
else
local DataText = Data.Data -- #string
Text = DataText
if type(DataText) == "string" then --Issue #1388 - don't just assume this is a string
Text = DataText
end
end
if Line < math.floor( Data.Order / 10 ) then