added Compilation Fix for type mismatch

Commit id-fdffa0b
from branch feature/NMC-832
added Compilation Fix for type mismatch
This commit is contained in:
A200073727 2023-04-14 14:27:04 +05:30 committed by Andy Scherzinger
parent 6d5d7bf5a1
commit 19cf84fd75
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -64,7 +64,7 @@ class InAppReviewHelperImpl(val appPreferences: AppPreferences) : InAppReviewHel
request.addOnCompleteListener { task -> request.addOnCompleteListener { task ->
if (task.isSuccessful) { if (task.isSuccessful) {
// We can get the ReviewInfo object // We can get the ReviewInfo object
val reviewInfo: ReviewInfo = task.result val reviewInfo: ReviewInfo = task.result!!
launchAppReviewFlow(manager, activity, reviewInfo) launchAppReviewFlow(manager, activity, reviewInfo)
} else { } else {
// There was some problem, log or handle the error code. // There was some problem, log or handle the error code.