Conditionally sanitize exceptions

This commit is contained in:
M66B
2019-06-26 16:51:29 +02:00
parent 4cc1ed3a85
commit 286a6a9720
11 changed files with 48 additions and 42 deletions

View File

@@ -332,7 +332,7 @@ abstract class ActivityBilling extends ActivityBase implements PurchasesUpdatedL
}
} catch (Throwable ex) {
Log.e(ex);
Toast.makeText(this, Helper.formatThrowable(ex), Toast.LENGTH_LONG).show();
Toast.makeText(this, Helper.formatThrowable(ex, false), Toast.LENGTH_LONG).show();
}
editor.apply();