Page 1 of 1
dzVents: dz.time.dayName -> "WednesDay"
Posted: Wednesday 24 March 2021 10:36
by plugge
@waaren FYI
dz.time.dayName returns "WednesDay".
(dzVents 3.1.7)
I haven't checked the other week day names.
Re: dzVents: dz.time.dayName -> "WednesDay"
Posted: Wednesday 24 March 2021 11:04
by waaren
plugge wrote: Wednesday 24 March 2021 10:36
dz.time.dayName returns "WednesDay". (dzVents 3.1.7)
Thanks for reporting. Will be fixed in next build.
If you do not want to update for this, you can change line
Code: Select all
local LOOKUPDAYNAME = { 'Sunday', 'Monday', 'Tuesday', 'WednesDay', 'Thursday', 'Friday', 'Saturday' }
of <domoticzdir>/dzVents/runtime/Time.lua ( somewhere around line 147 )
to
Code: Select all
local LOOKUPDAYNAME = { 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday' }
Re: dzVents: dz.time.dayName -> "WednesDay"
Posted: Wednesday 24 March 2021 11:14
by plugge
Thanks for reporting. Will be fixed in next build.
If you do not want to update for this, you can change line
Thanx!