Conversation
Greptile SummaryThis PR standardizes Discord invite links across the docs and web app, replacing various
Confidence Score: 3/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[User clicks Discord link] --> B{Protocol?}
B -- "http:// (current PR)" --> C[Browser may warn: insecure link]
C --> D[Possible mixed-content block on HTTPS site]
B -- "https:// (recommended fix)" --> E[Secure redirect to discord.omi.me]
E --> F[User lands in Omi Discord server]
Last reviewed commit: 757003a |
| </Step> | ||
| <Step title="Join the Community" icon="discord"> | ||
| Connect with other developers in the [Omi Discord](https://discord.gg/omi) for support and collaboration | ||
| Connect with other developers in the [Omi Discord](http://discord.omi.me) for support and collaboration |
There was a problem hiding this comment.
HTTP instead of HTTPS for Discord link
All five updated links use http://discord.omi.me instead of https://discord.omi.me. The original links all used https://, so this is a regression. Using plain HTTP exposes users to potential man-in-the-middle attacks and will likely trigger browser security warnings. Modern browsers may also block or warn about mixed-content HTTP links embedded in HTTPS pages.
This same issue applies across all five changed files:
docs/doc/developer/apps/Submitting.mdx(line 207)docs/docs.json(line 143)web/app/src/components/layout/Sidebar.tsx(line 466)web/app/src/components/ui/BetaRibbon.tsx(line 42)web/app/src/components/ui/BetaWelcomeModal.tsx(line 163)
All occurrences should be changed to https://discord.omi.me.
| Connect with other developers in the [Omi Discord](http://discord.omi.me) for support and collaboration | |
| Connect with other developers in the [Omi Discord](https://discord.omi.me) for support and collaboration |
## Summary - Standardize all Discord links to use `discord.omi.me` instead of various `discord.gg` and `discord.com/invite` URLs - Updated in docs footer, app submission guide, web app sidebar, beta ribbon, and beta welcome modal 🤖 Generated with [Claude Code](https://claude.com/claude-code)
Summary
discord.omi.meinstead of variousdiscord.gganddiscord.com/inviteURLs🤖 Generated with Claude Code