Skip to content

Commit

Permalink
Correction corresponding to CORS
Browse files Browse the repository at this point in the history
  • Loading branch information
brainymisio committed May 16, 2018
1 parent 7389380 commit 1683291
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion modules/brainyBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,16 @@ export const spec = {
requestURL += '_flash=' + flash + '&';
requestURL += '_nocache=' + nocache;

const options = {
withCredentials: false
};

bidRequests.push({
method: 'GET',
url: BASE_URL,
data: requestURL,
bidRequest: bid
bidRequest: bid,
options: options
})
}
return bidRequests;
Expand Down

0 comments on commit 1683291

Please sign in to comment.