diff --git a/mobile/lib/services/update_service.dart b/mobile/lib/services/update_service.dart index 815d909f8b..7b53c2e246 100644 --- a/mobile/lib/services/update_service.dart +++ b/mobile/lib/services/update_service.dart @@ -135,7 +135,7 @@ class UpdateService { return _packageInfo.packageName.startsWith("io.ente.photos.independent"); } - bool isFdroidFlavor() { + bool isFDroidFlavor() { if (Platform.isIOS) { return false; } @@ -146,12 +146,12 @@ class UpdateService { if (Platform.isIOS) { return false; } - return !isIndependentFlavor() && !isFdroidFlavor(); + return !isIndependentFlavor() && !isFDroidFlavor(); } // getRateDetails returns details about the place Tuple2 getRateDetails() { - if (isFdroidFlavor() || isIndependentFlavor()) { + if (isFDroidFlavor() || isIndependentFlavor()) { return const Tuple2( "AlternativeTo", "https://alternativeto.net/software/ente/about/",