mirror of https://github.com/M66B/FairEmail.git
Always generate crash report for non Play store install
This commit is contained in:
parent
3a7a392f33
commit
43f9db2833
|
@ -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…
Reference in New Issue