You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Timestamps in HTML were not able to support timezone offset parameter.
Inconsistencies were observed between HTML and SQLite. I noticed that timestamps were not added appropriately in the lava SQLite. Timestamps are stored in the plist file as datetime objets and not str. When they were converted to be added in the SQLite database, datetime objets were considered in local time instead of UTC and then were converted in UTC.
Corrective action
A new convert_plist_date_to_timezone_offset function was created in ilapfuncs.py to:
manage date objets 'YYYY-MM-DDTHH:MM:SSZ' in plist files
convert them to support timezone offset chosen by the user
add them in the correct timestamp in the lava SQLite database
The text was updated successfully, but these errors were encountered:
Issues
Corrective action
A new convert_plist_date_to_timezone_offset function was created in ilapfuncs.py to:
The text was updated successfully, but these errors were encountered: