Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a0b95b0 authored by Moez Bhatti's avatar Moez Bhatti
Browse files

Fix night mode selection not working

parent f64365f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ class BillingManager @Inject constructor(context: Context) : PurchasesUpdatedLis

    private val skus = listOf(SKU_PLUS, SKU_PLUS_DONATE)
    private val purchaseList = mutableListOf<Purchase>()
    private val purchaseListObservable: Observable<List<Purchase>> = BehaviorSubject.create()
    private val purchaseListObservable: Observable<List<Purchase>> = BehaviorSubject.createDefault(listOf())

    private val billingClient: BillingClient = BillingClient.newBuilder(context).setListener(this).build()
    private var isServiceConnected = false