diff options
author | steckbrief <steckbrief@chefmail.de> | 2015-11-20 22:49:56 +0100 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2015-11-20 22:49:56 +0100 |
commit | 9efc13983516c4c37540eb9544f8fa411ded81c7 (patch) | |
tree | 9a4065ffc95ca82d1bb1611a0718deb7abff0270 /src/main | |
parent | 2531c88f2c8a992aa0c40c9f96e88099dc94139e (diff) |
Partially implements FS#6: Conference ID changed to c+bugs@confere
nce.thedevstack.de
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/de/thedevstack/conversationsplus/utils/ExceptionHelper.java | 2 | ||||
-rw-r--r-- | src/main/res/values/strings.xml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/de/thedevstack/conversationsplus/utils/ExceptionHelper.java b/src/main/java/de/thedevstack/conversationsplus/utils/ExceptionHelper.java index 999d1027..1b2a5a96 100644 --- a/src/main/java/de/thedevstack/conversationsplus/utils/ExceptionHelper.java +++ b/src/main/java/de/thedevstack/conversationsplus/utils/ExceptionHelper.java @@ -93,7 +93,7 @@ public class ExceptionHelper { Conversation conversation = null; try { conversation = service.findOrCreateConversation(finalAccount, - Jid.fromString("bugs@siacs.eu"), false); + Jid.fromString(context.getString(R.string.cplus_bugreport_jabberid)), false); } catch (final InvalidJidException ignored) { } Message message = new Message(conversation, report diff --git a/src/main/res/values/strings.xml b/src/main/res/values/strings.xml index 8eaf2b37..124c6635 100644 --- a/src/main/res/values/strings.xml +++ b/src/main/res/values/strings.xml @@ -534,4 +534,5 @@ <string name="cplus_copied_to_clipboard">Copied to clipboard</string> <string name="pref_show_logcat_title">Show logcat output</string> <string name="pref_show_logcat_summary">Shows the output of logcat. This is useful for debugging.</string> + <string name="cplus_bugreport_jabberid">c+bugs@conference.thedevstack.de</string> </resources> |