Loading app/src/main/java/foundation/e/apps/api/fused/FusedAPIImpl.kt +2 −1 Original line number Diff line number Diff line Loading @@ -631,7 +631,8 @@ class FusedAPIImpl @Inject constructor( other_images_path = this.screenshots.transformToList(), package_name = this.packageName, ratings = Ratings( usageQualityScore = if (this.labeledRating.isNotEmpty()) this.labeledRating.toDouble() else -1.0 usageQualityScore = if (this.labeledRating.isNotEmpty()) this.labeledRating.toDoubleOrNull() ?: -1.0 else -1.0 ), offer_type = this.offerType, origin = Origin.GPLAY, Loading Loading
app/src/main/java/foundation/e/apps/api/fused/FusedAPIImpl.kt +2 −1 Original line number Diff line number Diff line Loading @@ -631,7 +631,8 @@ class FusedAPIImpl @Inject constructor( other_images_path = this.screenshots.transformToList(), package_name = this.packageName, ratings = Ratings( usageQualityScore = if (this.labeledRating.isNotEmpty()) this.labeledRating.toDouble() else -1.0 usageQualityScore = if (this.labeledRating.isNotEmpty()) this.labeledRating.toDoubleOrNull() ?: -1.0 else -1.0 ), offer_type = this.offerType, origin = Origin.GPLAY, Loading