Fix public calendar subscriptions and meetup links - #24
Merged
Conversation
- Use a webcal feed in the Google Calendar subscription URL and derive the feed origin at runtime so preview deployments subscribe to their own public feed.\n- Add a direct .ics download fallback for calendar clients that reject the Google subscription flow.\n- Rewrite loopback meetup registration and media URLs to the public Events Management origin during static generation.\n- Preserve the existing event and meetup title/location truncation improvements.\n\nVerification: pnpm build completed successfully with 15 pages and the live published event feed; git diff --check passed; generated output contained no localhost or loopback URLs.
Contributor
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
devcongress-website | 9e9873c | Commit Preview URL Branch Preview URL |
Aug 07 2026, 02:34 PM |
bubunyo
approved these changes
Aug 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix the public events calendar subscription flow and keep published meetup links usable from the website and preview deployments.
Why it failed earlier
The calendar feed was not stale or empty. It was returning the current published events correctly, but the Google Calendar
cidlink passed the feed as anhttps://URL. Google’s subscription flow expects the calendar source inwebcal://form, which caused the “Unable to add calendar. Check the URL.” error.The live August meetup data also contained a localhost registration URL, which would only work from the local development environment and not from the deployed website.
User-facing changes
webcal://feed and the current site origin..icsdownload fallback for calendar clients that reject the Google flow.Verification
pnpm buildpassed; 15 pages and the live published event feed were generated.git diff --checkpassed.The PR is ready for review.