fix: admin and docs bugs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-09 00:20:00 +00:00
co-authored by Claude Opus 4.6
parent c654ff9f73
commit 8be71e9929
2 changed files with 20 additions and 18 deletions
+2 -2
View File
@@ -172,7 +172,7 @@ docsRouter.post('/test', async (c) => {
return c.json({ error: 'Missing "url" field' }, 400)
}
// Basic URL validation — must be https, no private IPs
// Basic URL validation — must be http(s), no private IPs
let parsed: URL
try {
parsed = new URL(url)
@@ -180,7 +180,7 @@ docsRouter.post('/test', async (c) => {
return c.json({ error: 'Invalid URL' }, 400)
}
if (parsed.protocol !== 'https:' && parsed.protocol !== 'http:') {
return c.json({ error: 'URL must use https://' }, 400)
return c.json({ error: 'URL must use http:// or https://' }, 400)
}
const host = parsed.hostname
if (host === 'localhost' || host === '127.0.0.1' || host.startsWith('192.168.') || host.startsWith('10.') || host.endsWith('.local')) {