fix(docs): repair broken Discord badge in README - #204
Conversation
dcbadge.vercel.app returns 404 and no longer serves badges, leaving a broken image in the README. The service moved to dcbadge.limes.pink, which keeps the same API path and query parameters, so this is a host-only swap.
|
This PR targeted I retargeted it to |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe README Discord badge now uses ChangesDiscord badge update
Estimated code review effort: 1 (Trivial) | ~2 minutes Suggested reviewers: 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Problem
The Discord badge points at
dcbadge.vercel.app, which no longer serves badges — the request returns HTTP 404, so the badge renders as a broken image:The project moved to
dcbadge.limes.pink, which keeps the exact same API path and query parameters:(The old host answers 404 to any user agent; the new host returns 200 — it does reject some non-browser agents with 403, which is why a naive checker can miss it.)
Fix
Swap the host, nothing else — same path, same query string, so the badge renders exactly as before:
The Discord invite link itself is untouched.
Docs-only, one line.
Summary by CodeRabbit