File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
app/src/main/java/fr/free/nrw/commons Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ public class CommonsApplication extends DaggerApplication {
53
53
public static final String DEFAULT_EDIT_SUMMARY = "Uploaded using Android Commons app" ;
54
54
55
55
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" ;
56
57
public static final String FEEDBACK_EMAIL_SUBJECT = "Commons Android App (%s) Feedback" ;
57
58
58
59
private CommonsApplicationComponent component ;
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ private void sendAppLogsViaEmail() {
136
136
Intent feedbackIntent = new Intent (Intent .ACTION_SEND );
137
137
feedbackIntent .setType ("message/rfc822" );
138
138
feedbackIntent .putExtra (Intent .EXTRA_EMAIL ,
139
- new String []{CommonsApplication .FEEDBACK_EMAIL });
139
+ new String []{CommonsApplication .LOGS_PRIVATE_EMAIL });
140
140
feedbackIntent .putExtra (Intent .EXTRA_SUBJECT ,
141
141
String .format (CommonsApplication .FEEDBACK_EMAIL_SUBJECT ,
142
142
BuildConfig .VERSION_NAME ));
You can’t perform that action at this time.
0 commit comments