Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-yuxuan committed Dec 18, 2018
1 parent 6eeefa4 commit e7a1896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/adikteevBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const validateSizes = sizes => utils.isArray(sizes) && sizes.some(size => utils.
export function conformCookies(documentCookie) {
return documentCookie
.split('; ')
.filter(i => String(i).includes('='))
.filter(i => i.indexOf('=') !== -1)
.reduce((acc, kv) => {
const [k, v] = kv.split('=');
acc[k] = v;
Expand Down

0 comments on commit e7a1896

Please sign in to comment.