Files
emacs-doom/config.el
Daneel 7219b3fac9 Fix org-caldav: @ encoding in UIDs + nil-field event guard
Two patches in org-caldav use-package! config:

Fix #1: org-caldav-get-event encodes @ as %40 via url-hexify-string.
Baikal stores files with literal @ in filename (e.g. ...@google.com.ics).
Result: HTTP 404 after 5 retries for UIDs with @google.com suffix.
Advice: cl-letf temporarily replaces url-hexify-string to decode %40 back to @.

Fix #2: Some CalDAV events have nil SUMMARY/DTSTART. icalendar parser
returns nil, org-caldav passes to string-match -> Wrong type argument: stringp nil.
Advice: condition-case in org-caldav-update-events-in-org catches the error,
logs it to *org-caldav-debug* buffer, and allows sync state to be saved.
2026-02-25 09:44:20 +01:00

84 KiB