Fix log message in GitHub OAuth callback route

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Till Tomczak 2025-04-01 15:30:51 +02:00
parent 1348c5479e
commit 5957e8104c
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ export async function GET(request: Request): Promise<Response> {
const tokens = await github.validateAuthorizationCode(code);
// Log zur Fehlersuche
console.log(`GitHub OAuth Token-Validierung erfolgreich, verwendete Callback-URL: ${github.redirectURI}`);
console.log("GitHub OAuth Token-Validierung erfolgreich");
const githubUserResponse = await fetch("https://git.i.mercedes-benz.com/api/v3/user", {
headers: {

View File

@ -30,7 +30,7 @@ try {
// Aktualisiere auch die Logging-Nachricht
content = content.replace(
/console\.log\(`GitHub OAuth Token-Validierung mit Callback-URL: \${OAUTH_CALLBACK_URL}\`\);/g,
'console.log(`GitHub OAuth Token-Validierung erfolgreich, verwendete Callback-URL: ${github.redirectURI}`);'
'console.log("GitHub OAuth Token-Validierung erfolgreich");'
);
// Schreibe die aktualisierte Datei