1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 14:41:08 +00:00

I/O errors are to be expected

This commit is contained in:
M66B 2020-08-05 07:58:14 +02:00
parent 0bff5014af
commit 37a6447bbb

View file

@ -55,6 +55,7 @@ import androidx.constraintlayout.widget.Group;
import androidx.lifecycle.Lifecycle;
import androidx.preference.PreferenceManager;
import java.io.IOException;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
@ -284,7 +285,7 @@ public class FragmentOptionsPrivacy extends FragmentBase implements SharedPrefer
@Override
protected void onException(Bundle args, Throwable ex) {
Log.unexpectedError(getParentFragmentManager(), ex);
Log.unexpectedError(getParentFragmentManager(), ex, !(ex instanceof IOException));
}
}.execute(FragmentOptionsPrivacy.this, new Bundle(), "disconnect");
}