We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4533241 + 28b3723 commit 105a2a5Copy full SHA for 105a2a5
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@gamedistribution.com/html5-sdk",
3
- "version": "1.5.98",
+ "version": "1.5.99",
4
"author": "GameDistribution.com",
5
"description": "GameDistribution.com HTML5 SDK",
6
"url": "https://gamedistribution.com",
src/main.js
@@ -1319,6 +1319,11 @@ class SDK {
1319
throw new Error("Game or domain is blocked.");
1320
}
1321
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
+
1327
// Check ad type
1328
if (!adType) {
1329
adType = AdType.Rewarded;
0 commit comments