From 50f9e4b4e402a35cf2febf8eae4597eeeb1945dd Mon Sep 17 00:00:00 2001 From: Luna712 <142361265+Luna712@users.noreply.github.com> Date: Wed, 20 May 2026 11:43:18 -0600 Subject: [PATCH] AppDebug: use kotlin.concurrent.Volatile By default this uses kotlin.jvm.Volatile, which we should be using kotlin.concurrent.Volatile instead. --- .../kotlin/com/lagradost/cloudstream3/utils/AppDebug.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/library/src/commonMain/kotlin/com/lagradost/cloudstream3/utils/AppDebug.kt b/library/src/commonMain/kotlin/com/lagradost/cloudstream3/utils/AppDebug.kt index e07f32c0a4a..180aee11a78 100644 --- a/library/src/commonMain/kotlin/com/lagradost/cloudstream3/utils/AppDebug.kt +++ b/library/src/commonMain/kotlin/com/lagradost/cloudstream3/utils/AppDebug.kt @@ -1,6 +1,7 @@ package com.lagradost.cloudstream3.utils import com.lagradost.cloudstream3.InternalAPI +import kotlin.concurrent.Volatile @InternalAPI object AppDebug {