Disable querying send buffer

This will close the socket on some devices
This commit is contained in:
M66B 2023-09-10 08:03:49 +02:00
parent a8517e1537
commit 644f203b82
1 changed files with 1 additions and 1 deletions

View File

@ -1313,7 +1313,7 @@ public class SMTPTransport extends Transport {
Integer _fd = null;
try {
if (eu.faircode.email.BuildConfig.DEBUG)
if (eu.faircode.email.BuildConfig.DEBUG && false)
_fd = ParcelFileDescriptor.fromSocket(serverSocket).getFd();
} catch (Throwable ex) {
eu.faircode.email.Log.w(ex);