mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 13:45:35 +03:00
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:
parent
6d5d7bf5a1
commit
19cf84fd75
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class InAppReviewHelperImpl(val appPreferences: AppPreferences) : InAppReviewHel
|
|||
request.addOnCompleteListener { task ->
|
||||
if (task.isSuccessful) {
|
||||
// We can get the ReviewInfo object
|
||||
val reviewInfo: ReviewInfo = task.result
|
||||
val reviewInfo: ReviewInfo = task.result!!
|
||||
launchAppReviewFlow(manager, activity, reviewInfo)
|
||||
} else {
|
||||
// There was some problem, log or handle the error code.
|
||||
|
|
Loading…
Reference in a new issue