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
Two invalid timezone entries were encountered in our system:
DateTimeZone::__construct(): Unknown or bad timezone (Argentina/Buenos_Aires)
DateTimeZone::__construct(): Unknown or bad timezone (Indiana/Indianapolis)
Upon examining the IcalParser.php file, I noticed that the toTimezone function searches for a matching value within the windowsTimezones array. If it cannot find a match, it proceeds to use the $zone value directly. However, the subsequent operations involving new DateTimeZone($value) do not accept the value returned by this function. It seems that additional entries may need to be added to the windowsTimezones file.
Any help or guidance on resolving this issue would be greatly appreciated. Thank you in advance!
The text was updated successfully, but these errors were encountered:
Issue: Invalid timezone error
Observations:
Two invalid timezone entries were encountered in our system:
Upon examining the IcalParser.php file, I noticed that the toTimezone function searches for a matching value within the windowsTimezones array. If it cannot find a match, it proceeds to use the $zone value directly. However, the subsequent operations involving new DateTimeZone($value) do not accept the value returned by this function. It seems that additional entries may need to be added to the windowsTimezones file.
Any help or guidance on resolving this issue would be greatly appreciated. Thank you in advance!
The text was updated successfully, but these errors were encountered: