diff options
author | daneren2005 <daneren2005@gmail.com> | 2013-04-05 10:42:41 -0700 |
---|---|---|
committer | daneren2005 <daneren2005@gmail.com> | 2013-04-05 10:42:41 -0700 |
commit | 8e463efcf4e21b33c39f880e6db3976be35c0294 (patch) | |
tree | 579bdf2864e96709acc61a0fee1e0e0491e2cf25 | |
parent | a1d6e12f0d5dafcdc1d245b16dbaf1aeaad61fbb (diff) | |
download | dsub-8e463efcf4e21b33c39f880e6db3976be35c0294.tar.gz dsub-8e463efcf4e21b33c39f880e6db3976be35c0294.tar.bz2 dsub-8e463efcf4e21b33c39f880e6db3976be35c0294.zip |
Updated email address
-rw-r--r-- | subsonic-android/src/github/daneren2005/dsub/activity/MainActivity.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/activity/MainActivity.java b/subsonic-android/src/github/daneren2005/dsub/activity/MainActivity.java index fd2f31d4..36a8d17d 100644 --- a/subsonic-android/src/github/daneren2005/dsub/activity/MainActivity.java +++ b/subsonic-android/src/github/daneren2005/dsub/activity/MainActivity.java @@ -343,7 +343,7 @@ public class MainActivity extends SubsonicTabActivity { protected void done(File logcat) { Intent email = new Intent(android.content.Intent.ACTION_SEND); email.setType("text/plain"); - email.putExtra(Intent.EXTRA_EMAIL, new String[] {"daneren2005@gmail.com"}); + email.putExtra(Intent.EXTRA_EMAIL, new String[] {"dsub.android@gmail.com"}); email.putExtra(Intent.EXTRA_SUBJECT, "DSub " + version + " Error Logs"); email.putExtra(Intent.EXTRA_TEXT, "Describe the problem here"); Uri attachment = Uri.fromFile(logcat); @@ -353,4 +353,4 @@ public class MainActivity extends SubsonicTabActivity { }.execute(); } catch(Exception e) {} } -}
\ No newline at end of file +} |