Filter exception

This commit is contained in:
M66B 2020-02-01 15:12:10 +01:00
parent bcac8903fb
commit d17bdf71e7
1 changed files with 2 additions and 1 deletions

View File

@ -286,7 +286,8 @@ public class Log {
if (ex instanceof IllegalStateException &&
("Not connected".equals(ex.getMessage()) ||
"This operation is not allowed on a closed folder".equals(ex.getMessage())))
"This operation is not allowed on a closed folder".equals(ex.getMessage()) ||
context.getString(R.string.title_no_internet).equals(ex.getMessage())))
return false;
if (ex instanceof FileNotFoundException &&