This commit is contained in:
Benoit Marty 2022-06-01 16:34:21 +02:00 committed by Benoit Marty
parent ff6aa1147c
commit 77601f61fb
2 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ class UnifiedPushHelper @Inject constructor(
try {
pushersManager?.unregisterPusher(getEndpointOrToken().orEmpty())
} catch (e: Exception) {
Timber.d("Probably unregistering a non existant pusher")
Timber.d("Probably unregistering a non existing pusher")
}
}
storeUpEndpoint(null)

View File

@ -194,7 +194,7 @@ class VectorMessagingReceiver : MessagingReceiver() {
try {
pushersManager.unregisterPusher(unifiedPushHelper.getEndpointOrToken().orEmpty())
} catch (e: Exception) {
Timber.tag(loggerTag.value).d("Probably unregistering a non existant pusher")
Timber.tag(loggerTag.value).d("Probably unregistering a non existing pusher")
}
}
}