From de72eceecfd04ae41bd2970c131283bfd3eb950c Mon Sep 17 00:00:00 2001 From: Alan Evans Date: Wed, 13 Mar 2019 18:19:33 -0300 Subject: [PATCH] Update help URL to avoid redirect. --- src/org/thoughtcrime/securesms/ConversationListActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/thoughtcrime/securesms/ConversationListActivity.java b/src/org/thoughtcrime/securesms/ConversationListActivity.java index 12b1778f29..8eef67498d 100644 --- a/src/org/thoughtcrime/securesms/ConversationListActivity.java +++ b/src/org/thoughtcrime/securesms/ConversationListActivity.java @@ -286,7 +286,7 @@ public class ConversationListActivity extends PassphraseRequiredActionBarActivit private void handleHelp() { try { - startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://support.whispersystems.org"))); + startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://support.signal.org"))); } catch (ActivityNotFoundException e) { Toast.makeText(this, R.string.ConversationListActivity_there_is_no_browser_installed_on_your_device, Toast.LENGTH_LONG).show(); }