feat(core): Add support for digestAuth to httpRequest and declarative style (#5676)

feat(core): Add support to digestAuth to httpRequest and declarative style
This commit is contained in:
Jan Oberhauser
2023-04-19 13:44:41 +02:00
committed by GitHub
parent f9b3aeac44
commit 62f993c84f
3 changed files with 23 additions and 3 deletions

View File

@@ -224,7 +224,7 @@ export class CredentialsHelper extends ICredentialsHelper {
node: INode,
defaultTimezone: string,
): string {
if (parameterValue.charAt(0) !== '=') {
if (typeof parameterValue !== 'string' || parameterValue.charAt(0) !== '=') {
return parameterValue;
}