When a duplicate room list entry is found, report it and remove it (#6006)

* When a duplicate room list entry is found, report it and remove it

* Fix tests and fixtures

* Simplify how the updates are described in the Sentry reports
This commit is contained in:
Jorge Martin Espinosa 2026-01-14 11:56:45 +01:00 committed by GitHub
parent 6d1ed5967b
commit 3ef5e76e99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 105 additions and 27 deletions

View file

@ -109,6 +109,7 @@ class SentryAnalyticsProvider(
}
override fun trackError(throwable: Throwable) {
Timber.e(throwable, "Sending error to Sentry")
Sentry.captureException(throwable)
}