Change support URI

This commit is contained in:
M66B 2021-02-12 15:58:59 +01:00
parent 4cb8bf6d08
commit 388e82d5e2
1 changed files with 6 additions and 2 deletions

View File

@ -720,8 +720,12 @@ public class Helper {
}
intent.putExtra(Intent.EXTRA_SUBJECT, context.getString(R.string.title_issue_subject, version));
return intent;
} else
return new Intent(Intent.ACTION_VIEW, Uri.parse(XDA_URI));
} else {
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) {