-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Kotlin 1.9.20 #64
Conversation
…d-sdk Bump Firebase Android BoM to 32.3.1
252dd7e
to
ccb5561
Compare
@@ -38,7 +38,7 @@ suspend fun <T> Task<T>.awaitWhileOnline(database: FirebaseDatabase): T = | |||
.reference(".info/connected") | |||
.valueEvents | |||
.debounce(2.seconds) | |||
.filter { !it.value<Boolean>() } | |||
.filterNot { it.value<Boolean>() } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🥂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be fair, this is from the upstream :P
check(Firebase.auth.currentUser != null) | ||
Firebase.auth.signOut() | ||
check(Firebase.auth.currentUser == null) | ||
check(auth.currentUser != null) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW, what is check
compare to assertNull
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here is also checkNotNull
available in anycase :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
…odeUserTokenExpired handle FIRAuthErrorCodeUserTokenExpired
This reverts commit 326a7cd.
This reverts commit e709dd3.
No description provided.