Skip to content

Commit

Permalink
Correcting a minor error (args length)
Browse files Browse the repository at this point in the history
  • Loading branch information
itsSoufianeDev committed Oct 5, 2019
1 parent 213e659 commit f0be363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/StartAppAdsPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void run() {
boolean disableReturnAd = args.optBoolean(1);
boolean disableSplashAd = args.optBoolean(2);

initStartApp(appId, disableReturnAd, disableSplashAd, userConsent, PUBLIC_CALLBACKS);
initStartApp(appId, disableReturnAd, disableSplashAd, PUBLIC_CALLBACKS);
}
});
return true;
Expand Down

0 comments on commit f0be363

Please sign in to comment.