Do not report IllegalStateException

This commit is contained in:
M66B 2016-01-10 08:53:29 +01:00
parent 877a801c8a
commit 1abeebd02f
1 changed files with 2 additions and 1 deletions

View File

@ -312,7 +312,8 @@ public class SinkholeService extends VpnService implements SharedPreferences.OnS
Widget.updateWidgets(SinkholeService.this);
// Report exception
Util.sendCrashReport(ex, SinkholeService.this);
if (!(ex instanceof IllegalStateException))
Util.sendCrashReport(ex, SinkholeService.this);
}
}
}