Fix crash in error tracking (#1248)

This commit is contained in:
jonnyandrew 2023-09-07 14:05:11 +01:00 committed by GitHub
parent e19b27badf
commit c44b7eb81c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/1248.bugfix Normal file
View file

@ -0,0 +1 @@
Fix crash in error tracking

View file

@ -71,7 +71,7 @@ class PosthogAnalyticsProvider @Inject constructor(
}
override fun trackError(throwable: Throwable) {
TODO("Not yet implemented")
// Not implemented
}
private fun createPosthog(): PostHog = postHogFactory.createPosthog()