Add parameter wasLastSession to SessionListener.onSessionDeleted

This commit is contained in:
Benoit Marty 2025-10-23 16:20:15 +02:00
parent 2acc6db70f
commit 9ca5fbdc08
13 changed files with 15 additions and 14 deletions

View file

@ -119,7 +119,7 @@ class DefaultPushService(
* The current push provider may want to take action, and we need to
* cleanup the stores.
*/
override suspend fun onSessionDeleted(userId: String) {
override suspend fun onSessionDeleted(userId: String, wasLastSession: Boolean) {
val sessionId = SessionId(userId)
val userPushStore = userPushStoreFactory.getOrCreate(sessionId)
val currentPushProviderName = userPushStore.getPushProviderName()

View file

@ -61,7 +61,7 @@ class DefaultNotificationConversationService(
sessionObserver.addListener(object : SessionListener {
override suspend fun onSessionCreated(userId: String) = Unit
override suspend fun onSessionDeleted(userId: String) {
override suspend fun onSessionDeleted(userId: String, wasLastSession: Boolean) {
onSessionLogOut(SessionId(userId))
}
})