Use browser for activation

This commit is contained in:
M66B 2020-02-06 22:45:35 +01:00
parent 90f12f800f
commit 3f0aac9601
1 changed files with 2 additions and 3 deletions

View File

@ -219,9 +219,8 @@ public class ActivityBilling extends ActivityBase implements PurchasesUpdatedLis
reportError(result, "IAB launch billing flow");
} else
try {
Intent view = new Intent(Intent.ACTION_VIEW);
view.setData(Uri.parse(BuildConfig.PRO_FEATURES_URI + "?challenge=" + getChallenge(this)));
Helper.view(this, view);
Uri uri = Uri.parse(BuildConfig.PRO_FEATURES_URI + "?challenge=" + getChallenge(this));
Helper.view(this, uri, true);
} catch (NoSuchAlgorithmException ex) {
Log.unexpectedError(getSupportFragmentManager(), ex);
}