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
1 changed files with 2 additions and 1 deletions

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");
}