fix: prevent null
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-11-14 12:02:40 +01:00
parent 43af96eb05
commit fa43f270ca
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ export default boot(({ app }) => {
method, method,
params, params,
headers: confHeaders, headers: confHeaders,
aborted: signal.aborted, aborted: signal?.aborted,
version: headers?.['salix-version'], version: headers?.['salix-version'],
}, },
}; };