Skip to content

Commit ba6950d

Browse files
IE bug fix (#1930)
1 parent 4fc8fa5 commit ba6950d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/huddledmassesBidAdapter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export const spec = {
7070
let request = {
7171
'deviceWidth': winTop.screen.width,
7272
'deviceHeight': winTop.screen.height,
73-
'language': navigator ? navigator.language : '',
73+
'language': (navigator && navigator.language) ? navigator.language : '',
7474
'secure': location.protocol === 'https:' ? 1 : 0,
7575
'host': location.host,
7676
'page': location.pathname,

0 commit comments

Comments
 (0)