mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 09:39:25 +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 ->
|
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.
|
||||||
|
|
Loading…
Reference in a new issue