Skip to content

Commit

Permalink
IE bug fix (#1930)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaiminpanchal27 authored Dec 6, 2017
1 parent 4fc8fa5 commit ba6950d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/huddledmassesBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const spec = {
let request = {
'deviceWidth': winTop.screen.width,
'deviceHeight': winTop.screen.height,
'language': navigator ? navigator.language : '',
'language': (navigator && navigator.language) ? navigator.language : '',
'secure': location.protocol === 'https:' ? 1 : 0,
'host': location.host,
'page': location.pathname,
Expand Down

0 comments on commit ba6950d

Please sign in to comment.