@@ -76,7 +76,7 @@ export class RewardsPanel extends React.Component<Props, State> {
76
76
publisherBlob = result [ 0 ]
77
77
clearInterval ( interval )
78
78
const rewardsPanelActions = require ( '../background/actions/rewardsPanelActions' ) . default
79
- rewardsPanelActions . onTabRetrieved ( tab , publisherBlob , false )
79
+ rewardsPanelActions . onTabRetrieved ( tab , publisherBlob )
80
80
} else {
81
81
chrome . storage . local . get ( [ 'rewards_panel_open' ] , function ( result ) {
82
82
if ( result [ 'rewards_panel_open' ] === 'false' ) {
@@ -90,7 +90,7 @@ export class RewardsPanel extends React.Component<Props, State> {
90
90
clearInterval ( interval )
91
91
92
92
const rewardsPanelActions = require ( '../background/actions/rewardsPanelActions' ) . default
93
- rewardsPanelActions . onTabRetrieved ( tab , publisherBlob , false )
93
+ rewardsPanelActions . onTabRetrieved ( tab , publisherBlob )
94
94
}
95
95
}
96
96
} )
@@ -107,7 +107,7 @@ export class RewardsPanel extends React.Component<Props, State> {
107
107
}
108
108
} )
109
109
} else {
110
- this . props . actions . onTabRetrieved ( tab , publisherBlob , false )
110
+ this . props . actions . onTabRetrieved ( tab , publisherBlob )
111
111
}
112
112
}
113
113
let tab = tabs [ 0 ]
@@ -116,10 +116,10 @@ export class RewardsPanel extends React.Component<Props, State> {
116
116
if ( url && url . host . endsWith ( '.twitch.tv' ) ) {
117
117
pollData ( tab , tab . id , url )
118
118
} else {
119
- this . props . actions . onTabRetrieved ( tab , '' , false )
119
+ this . props . actions . onTabRetrieved ( tab , '' )
120
120
}
121
121
} else {
122
- this . props . actions . onTabRetrieved ( tab , '' , false )
122
+ this . props . actions . onTabRetrieved ( tab , '' )
123
123
}
124
124
} )
125
125
}
0 commit comments