79416070

Date: 2025-02-05 20:08:32
Score: 0.5
Natty:
Report link

For context, not another answer: As @Evert said there is no place for a TimeZone in an iCAL date value, just a year, month and day:

https://www.rfc-editor.org/rfc/rfc2445#section-4.3.4

Formal Definition: The value type is defined by the following
notation:

 date               = date-value

 date-value         = date-fullyear date-month date-mday
 date-fullyear      = 4DIGIT
 date-month         = 2DIGIT        ;01-12
 date-mday          = 2DIGIT        ;01-28, 01-29, 01-30, 01-31
                                    ;based on month/year

...

 Example: The following represents July 14, 1997:

 19970714
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Evert
  • Low reputation (0.5):
Posted by: Craig.C