Skip to content

Commit

Permalink
Correct overflow issue for 32 bit code
Browse files Browse the repository at this point in the history
On 32 bits the EPOCH_END caused a overflow. Thank @aka0xxx6
  • Loading branch information
jodur committed Jan 31, 2021
1 parent 8e3c178 commit f5f20ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/imagedirectory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
SERVCE_PARAM_ENDTIME='endtimestamp'
SERVICE_PARAM_LASTHOURS='lasthours'
EPOCH_START='01/01/1970 00:00:00'
EPOCH_END='31/12/9999 23:59:59'
EPOCH_END='31/12/2037 23:59:59'

SNAPTOGIF_CREATE_SCHEMA = vol.Schema(
{
Expand Down

0 comments on commit f5f20ff

Please sign in to comment.