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 36482b9 commit 194ee54Copy full SHA for 194ee54
sentry-android-core/src/main/java/io/sentry/android/core/SystemEventsBreadcrumbsIntegration.java
@@ -208,7 +208,9 @@ public void close() throws IOException {
208
try (final @NotNull ISentryLifecycleToken ignored = receiverLock.acquire()) {
209
isClosed = true;
210
filter = null;
211
- handlerThread.quit();
+ if (handlerThread != null) {
212
+ handlerThread.quit();
213
+ }
214
handlerThread = null;
215
}
216
0 commit comments