Day of the week null value
Opened this issue · 0 comments
Borayvor commented
Describe the bug
file - LibClockTST.lua
row - 161 ->local dayNumber = os.date('%w', epochTime)
must not be string
local dayNumber = tonumber(os.date('%w', epochTime))
Opened this issue · 0 comments
Describe the bug
file - LibClockTST.lua
row - 161 ->local dayNumber = os.date('%w', epochTime)
must not be string
local dayNumber = tonumber(os.date('%w', epochTime))