Rename basic to Basic

Signed-off-by: cmoulliard <cmoulliard@redhat.com>
This commit is contained in:
cmoulliard
2023-12-20 09:36:09 +01:00
parent 90836c82e4
commit 3e20f53e49
+1 -1
View File
@@ -120,7 +120,7 @@ export function getGiteaRequestOptions(config: GiteaIntegrationConfig): {
}
if (username) {
headers.Authorization = `basic ${Buffer.from(
headers.Authorization = `Basic ${Buffer.from(
`${username}:${password}`,
).toString('base64')}`;
} else {