fix ads blacklist
This commit is contained in:
parent
e8de12bf91
commit
958fb0b085
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ import I18nMessage from 'component/i18nMessage';
|
|||
import Button from 'component/button';
|
||||
import classnames from 'classnames';
|
||||
// $FlowFixMe
|
||||
import { ADS_CHANNEL_BLACKLIST } from 'homepages';
|
||||
import { NO_ADS_CHANNEL_IDS } from 'homepages';
|
||||
|
||||
const ADS_URL = '//assets.revcontent.com/master/delivery.js';
|
||||
const IS_MOBILE = typeof window.orientation !== 'undefined';
|
||||
|
@ -44,7 +44,7 @@ function Ads(props: Props) {
|
|||
|
||||
const channelId = claim && claim.signing_channel && claim.signing_channel.claim_id;
|
||||
|
||||
const isBlocked = isMature || (ADS_CHANNEL_BLACKLIST && ADS_CHANNEL_BLACKLIST.includes(channelId));
|
||||
const isBlocked = isMature || (NO_ADS_CHANNEL_IDS && NO_ADS_CHANNEL_IDS.includes(channelId));
|
||||
useEffect(() => {
|
||||
if (SHOW_ADS && type === 'video') {
|
||||
let script;
|
||||
|
|
Loading…
Reference in a new issue