Change name of fun.
This commit is contained in:
parent
41d35e68a0
commit
e577320301
|
@ -19,5 +19,5 @@ package im.vector.app.nightly
|
|||
import javax.inject.Inject
|
||||
|
||||
class NightlyProxy @Inject constructor() {
|
||||
fun mayDisplayFirebasePopup() = Unit
|
||||
fun onHomeResumed() = Unit
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ class NightlyProxy @Inject constructor(
|
|||
@DefaultPreferences
|
||||
private val sharedPreferences: SharedPreferences,
|
||||
) {
|
||||
fun mayDisplayFirebasePopup() {
|
||||
fun onHomeResumed() {
|
||||
if (!canDisplayPopup()) return
|
||||
val firebaseAppDistribution = FirebaseAppDistribution.getInstance()
|
||||
firebaseAppDistribution.updateIfNewReleaseAvailable()
|
||||
|
|
|
@ -537,7 +537,7 @@ class HomeActivity :
|
|||
serverBackupStatusViewModel.refreshRemoteStateIfNeeded()
|
||||
|
||||
// Check nightly
|
||||
nightlyProxy.mayDisplayFirebasePopup()
|
||||
nightlyProxy.onHomeResumed()
|
||||
}
|
||||
|
||||
override fun getMenuRes() = R.menu.home
|
||||
|
|
Loading…
Reference in New Issue