You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue found at line 35 in destination.js of function "getAuthorizationHeader". This line removes the entire "headers" data passed in from client app and replaced it with auth token retrieved from destination.
function getAuthorizationHeader(_config, cfDestinationInfo) {
return new Promise((resolve, reject) => {
var error;
var config = Object.assign({}, _config);
//config.headers = {} ***** DEFECT
The text was updated successfully, but these errors were encountered:
Just notice the change was already applied 4 months ago in your project file destination.js
"config.headers = {}" has been changed to "config.headers = config.headers || {};", however this change has not been officially released to npm registry yet.
Issue found at line 35 in destination.js of function "getAuthorizationHeader". This line removes the entire "headers" data passed in from client app and replaced it with auth token retrieved from destination.
function getAuthorizationHeader(_config, cfDestinationInfo) {
return new Promise((resolve, reject) => {
var error;
var config = Object.assign({}, _config);
//config.headers = {} ***** DEFECT
The text was updated successfully, but these errors were encountered: