Aethel Bot OSS repository! aethel.xyz
bot fun ai discord discord-bot aethel

fix: Incomplete URL substring sanitization

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

authored by Scan Copilot Autofix powered by AI and committed by GitHub 955118a3 d162713a

Changed files
+1 -1
src
routes
+1 -1
src/routes/apiKeys.ts
··· 260 260 }); 261 261 } 262 262 263 - const isGemini = fullApiUrl.includes('generativelanguage.googleapis.com'); 263 + const isGemini = parsedUrl.hostname === 'generativelanguage.googleapis.com'; 264 264 265 265 if (isGemini) { 266 266 const listModelsUrl = `https://generativelanguage.googleapis.com/v1beta/models?key=${apiKey}`;