File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
sentry-android-replay/src/main/java/io/sentry/android/replay Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import android.graphics.Bitmap
77import android.os.Build
88import android.view.MotionEvent
99import io.sentry.Breadcrumb
10+ import io.sentry.BuildConfig
1011import io.sentry.DataCategory.All
1112import io.sentry.DataCategory.Replay
1213import io.sentry.IConnectionStatusProvider.ConnectionStatus
@@ -158,7 +159,7 @@ public class ReplayIntegration(
158159 finalizePreviousReplay()
159160 }
160161
161- override fun isRecording () = lifecycle.currentState >= STARTED && lifecycle.currentState < STOPPED
162+ override fun isRecording (): Boolean = lifecycle.currentState >= STARTED && lifecycle.currentState < STOPPED
162163
163164 override fun start () {
164165 lifecycleLock.acquire().use {
You can’t perform that action at this time.
0 commit comments