summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2024-06-13 13:32:06 +0200
committerAlbin <albin@mullvad.net>2024-06-13 17:01:00 +0200
commit39bc2d98d771b5a8745f530124cf6802080abd10 (patch)
tree80f8b73927c440596ea041732e59e071e512c495
parent0ac8730d349c082ce52d12b47a960326bc7174ab (diff)
downloadmullvadvpn-39bc2d98d771b5a8745f530124cf6802080abd10.tar.xz
mullvadvpn-39bc2d98d771b5a8745f530124cf6802080abd10.zip
Fix broken IS_PLAY_BUILD check
-rw-r--r--android/service/src/main/kotlin/net/mullvad/mullvadvpn/service/constant/BuildConstant.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/service/src/main/kotlin/net/mullvad/mullvadvpn/service/constant/BuildConstant.kt b/android/service/src/main/kotlin/net/mullvad/mullvadvpn/service/constant/BuildConstant.kt
index 5c7c387c91..5ec43986e3 100644
--- a/android/service/src/main/kotlin/net/mullvad/mullvadvpn/service/constant/BuildConstant.kt
+++ b/android/service/src/main/kotlin/net/mullvad/mullvadvpn/service/constant/BuildConstant.kt
@@ -2,4 +2,4 @@ package net.mullvad.mullvadvpn.service.constant
import net.mullvad.mullvadvpn.service.BuildConfig
-const val IS_PLAY_BUILD = BuildConfig.FLAVOR == "play"
+const val IS_PLAY_BUILD = BuildConfig.FLAVOR_billing == "play"