Skip to content

Commit 105a2a5

Browse files
authored
Merge pull request #178 from GameDistribution/development
Development
2 parents 4533241 + 28b3723 commit 105a2a5

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gamedistribution.com/html5-sdk",
3-
"version": "1.5.98",
3+
"version": "1.5.99",
44
"author": "GameDistribution.com",
55
"description": "GameDistribution.com HTML5 SDK",
66
"url": "https://gamedistribution.com",

src/main.js

+5
Original file line numberDiff line numberDiff line change
@@ -1319,6 +1319,11 @@ class SDK {
13191319
throw new Error("Game or domain is blocked.");
13201320
}
13211321

1322+
// Reject in case we don't want to serve ads.
1323+
if (!gameData.enableAds || this._whitelabelPartner) {
1324+
throw new Error("Advertisements are disabled.");
1325+
}
1326+
13221327
// Check ad type
13231328
if (!adType) {
13241329
adType = AdType.Rewarded;

0 commit comments

Comments
 (0)