v2.10 - Code conversion typo detected (replaced & with &&)

This commit is contained in:
moudsen 2023-06-30 10:05:53 +02:00 committed by GitHub
parent 8bc476ed63
commit 7075b40ad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ try {
result = { tags: {} };
// Set HTTP proxy if required
if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {
if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {
req.setProxy(params.HTTPProxy);
fields.HTTPProxy = params.HTTPProxy;
}