From 07bd2fbeb43259acd8c8b64f2601b264b47d3164 Mon Sep 17 00:00:00 2001 From: cmoulliard Date: Wed, 20 Dec 2023 09:40:08 +0100 Subject: [PATCH] Rename token to Token Signed-off-by: cmoulliard --- packages/integration/src/gitea/core.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/integration/src/gitea/core.ts b/packages/integration/src/gitea/core.ts index 6d11a4ffde..f188613d2a 100644 --- a/packages/integration/src/gitea/core.ts +++ b/packages/integration/src/gitea/core.ts @@ -124,7 +124,7 @@ export function getGiteaRequestOptions(config: GiteaIntegrationConfig): { `${username}:${password}`, ).toString('base64')}`; } else { - headers.Authorization = `token ${password}`; + headers.Authorization = `Token ${password}`; } return {