The Views iCal feed currently generates a SEQUENCE property for each VEVENT like this:
->setSequence($row_index + 1)
This implementation seems incorrect because:
- SEQUENCE is meant to track per-event revision history for a given UID.
- Using $row_index + 1 assigns values sequentially across rows, not across revisions.
- When an event is modified (e.g., SUMMARY or DTSTART change), its SEQUENCE does not increment, so calendar clients may not detect the update.
Since implementing proper per-event revision tracking is non-trivial, it would be better to remove the SEQUENCE property entirely. The iCalendar specification (RFC 5545) defines SEQUENCE as optional, so omitting it is safer than publishing misleading values.
Active
4.0
iCal Export
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
No activities found.