mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 02:07:12 +00:00
Change support URI
This commit is contained in:
parent
4cb8bf6d08
commit
388e82d5e2
1 changed files with 6 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue