Removed sending logcat

This commit is contained in:
M66B 2023-08-22 23:15:10 +02:00
parent f170dc52ba
commit b149ccb81a
1 changed files with 1 additions and 7 deletions

View File

@ -965,13 +965,7 @@ public class Util {
}
// Build intent
Intent sendEmail = new Intent(Intent.ACTION_SEND);
sendEmail.setType("message/rfc822");
sendEmail.putExtra(Intent.EXTRA_EMAIL, new String[]{"marcel+netguard@faircode.eu"});
sendEmail.putExtra(Intent.EXTRA_SUBJECT, "NetGuard " + version + " logcat");
sendEmail.putExtra(Intent.EXTRA_TEXT, sb.toString());
sendEmail.putExtra(Intent.EXTRA_STREAM, uri);
return sendEmail;
return null;
}
@Override