mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-31 01:51:24 +01:00
Always generate crash report for non Play store install
This commit is contained in:
@@ -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()))
|
||||
|
||||
Reference in New Issue
Block a user