Skip to content

Commit 32bca87

Browse files
Merge pull request commons-app#1000 from misaochan/fix-send-logs-again
Send logs only to private Google group forum (round 2)
2 parents e403c15 + 824569a commit 32bca87

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/src/main/java/fr/free/nrw/commons/CommonsApplication.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public class CommonsApplication extends DaggerApplication {
5353
public static final String DEFAULT_EDIT_SUMMARY = "Uploaded using Android Commons app";
5454

5555
public static final String FEEDBACK_EMAIL = "commons-app-android@googlegroups.com";
56+
public static final String LOGS_PRIVATE_EMAIL = "commons-app-android-private@googlegroups.com";
5657
public static final String FEEDBACK_EMAIL_SUBJECT = "Commons Android App (%s) Feedback";
5758

5859
private CommonsApplicationComponent component;

app/src/main/java/fr/free/nrw/commons/settings/SettingsFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private void sendAppLogsViaEmail() {
136136
Intent feedbackIntent = new Intent(Intent.ACTION_SEND);
137137
feedbackIntent.setType("message/rfc822");
138138
feedbackIntent.putExtra(Intent.EXTRA_EMAIL,
139-
new String[]{CommonsApplication.FEEDBACK_EMAIL});
139+
new String[]{CommonsApplication.LOGS_PRIVATE_EMAIL});
140140
feedbackIntent.putExtra(Intent.EXTRA_SUBJECT,
141141
String.format(CommonsApplication.FEEDBACK_EMAIL_SUBJECT,
142142
BuildConfig.VERSION_NAME));

0 commit comments

Comments
 (0)