We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b2a87 commit 0ebb846Copy full SHA for 0ebb846
core/src/main/java/io/snabble/sdk/Events.java
@@ -99,7 +99,7 @@ public void logError(String format, Object... args) {
99
}
100
101
private <T extends Payload> void post(final T payload, boolean debounce) {
102
- if (!isResumed) {
+ if (!isResumed && payload.getEventType() != EventType.ERROR) {
103
Logger.d("Could not send event, app is not active: " + payload.getEventType());
104
return;
105
0 commit comments