Add parameter wasLastSession to SessionListener.onSessionDeleted
This commit is contained in:
parent
2acc6db70f
commit
9ca5fbdc08
13 changed files with 15 additions and 14 deletions
|
|
@ -79,7 +79,7 @@ class DefaultAnalyticsService(
|
|||
// Nothing to do
|
||||
}
|
||||
|
||||
override suspend fun onSessionDeleted(userId: String) {
|
||||
override suspend fun onSessionDeleted(userId: String, wasLastSession: Boolean) {
|
||||
// Delete the store when the last session is deleted
|
||||
if (sessionStore.getAllSessions().isEmpty()) {
|
||||
analyticsStore.reset()
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@ class DefaultAnalyticsServiceTest {
|
|||
coroutineScope = backgroundScope,
|
||||
analyticsStore = store,
|
||||
)
|
||||
sut.onSessionDeleted("userId")
|
||||
sut.onSessionDeleted("userId", false)
|
||||
resetLambda.assertions().isCalledOnce()
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue