Replaced XDA URI

This commit is contained in:
M66B 2021-02-12 13:17:58 +01:00
parent ba75513ba1
commit d00d790941
1 changed files with 1 additions and 2 deletions

View File

@ -153,7 +153,6 @@ public class Helper {
static final String PGP_END_MESSAGE = "-----END PGP MESSAGE-----";
static final String FAQ_URI = "https://email.faircode.eu/faq/";
static final String XDA_URI = "https://forum.xda-developers.com/showthread.php?t=3824168";
static final String SUPPORT_URI = "https://contact.faircode.eu/?product=fairemailsupport";
static final String TEST_URI = "https://play.google.com/apps/testing/" + BuildConfig.APPLICATION_ID;
static final String GRAVATAR_PRIVACY_URI = "https://meta.stackexchange.com/questions/44717/is-gravatar-a-privacy-risk";
@ -721,7 +720,7 @@ 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));
return new Intent(Intent.ACTION_VIEW, Uri.parse(SUPPORT_URI));
}
static Intent getIntentRate(Context context) {