Change support URI

pull/194/head
M66B 5 years ago
parent 4cb8bf6d08
commit 388e82d5e2

@ -720,8 +720,12 @@ public class Helper {
} }
intent.putExtra(Intent.EXTRA_SUBJECT, context.getString(R.string.title_issue_subject, version)); intent.putExtra(Intent.EXTRA_SUBJECT, context.getString(R.string.title_issue_subject, version));
return intent; return intent;
} else } else {
return new Intent(Intent.ACTION_VIEW, Uri.parse(XDA_URI)); if (Helper.hasValidFingerprint(context))
return new Intent(Intent.ACTION_VIEW, Uri.parse(SUPPORT_URI));
else
return new Intent(Intent.ACTION_VIEW, Uri.parse(XDA_URI));
}
} }
static Intent getIntentRate(Context context) { static Intent getIntentRate(Context context) {

Loading…
Cancel
Save