Browse Source

Always generate crash report for non Play store install

main
M66B 5 years ago
parent
commit
43f9db2833
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      app/src/main/java/eu/faircode/email/ApplicationEx.java

+ 3
- 3
app/src/main/java/eu/faircode/email/ApplicationEx.java View File

@ -84,15 +84,15 @@ public class ApplicationEx extends Application {
}
public boolean ownFault(Throwable ex) {
if (!Helper.isPlayStoreInstall(this))
return true;
if (ex instanceof OutOfMemoryError)
return false;
if (ex instanceof RemoteException)
return false;
if (!Helper.isPlayStoreInstall(this))
return true;
while (ex != null) {
for (StackTraceElement ste : ex.getStackTrace())
if (ste.getClassName().startsWith(getPackageName()))


Loading…
Cancel
Save