Skip to content

Commit

Permalink
Fix utils problem with convertTypes (#3033)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoodlesNZ authored and mkendall07 committed Sep 4, 2018
1 parent edc9d43 commit ce3fe7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/pulsepointBidAdapter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint dot-notation:0, quote-props:0 */
import {logError, getTopWindowLocation} from 'src/utils';
import * as utils from 'src/utils';
import { registerBidder } from 'src/adapters/bidderFactory';

const NATIVE_DEFAULTS = {
Expand Down Expand Up @@ -237,7 +237,7 @@ function site(bidderRequest) {
id: pubId.toString(),
},
ref: referrer(),
page: getTopWindowLocation().href,
page: utils.getTopWindowLocation().href,
}
}
return null;
Expand Down Expand Up @@ -293,7 +293,7 @@ function parse(rawResponse) {
return JSON.parse(rawResponse);
}
} catch (ex) {
logError('pulsepointLite.safeParse', 'ERROR', ex);
utils.logError('pulsepointLite.safeParse', 'ERROR', ex);
}
return null;
}
Expand Down

0 comments on commit ce3fe7d

Please sign in to comment.