fix(docs): use direct RFC link

This commit is contained in:
Johnny Eric Amancio
2026-08-04 14:38:47 +02:00
parent bc5ac7f567
commit 054ee59491
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -205,7 +205,7 @@
<!-- packages/opencode/src/provider/provider.ts -->
- <https://www.morphllm.com/>
<!-- packages/opencode/src/tool/warpgrep.ts -->
- <https://www.rfc-editor.org/rfc/rfc8628#section-3.5>
- <https://www.rfc-editor.org/rfc/rfc8628.html#section-3.5>
<!-- packages/opencode/src/plugin/github-copilot/copilot.ts -->
- <https://x.com>
<!-- packages/opencode/src/kilocode/util/url.ts -->
@@ -312,7 +312,7 @@ export async function CopilotAuthPlugin(input: PluginInput): Promise<Hooks> {
if (data.error === "slow_down") {
// Based on the RFC spec, we must add 5 seconds to our current polling interval.
// (See https://www.rfc-editor.org/rfc/rfc8628#section-3.5)
// (See https://www.rfc-editor.org/rfc/rfc8628.html#section-3.5) // kilocode_change - avoid unstable redirect
let newInterval = (deviceData.interval + 5) * 1000
// GitHub OAuth API may return the new interval in seconds in the response.