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:
parent
0bff5014af
commit
37a6447bbb
1 changed files with 2 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue