Skip to content

Commit

Permalink
Fix detekt issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarIlic committed Apr 16, 2024
1 parent fef875f commit ba99a17
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ import coil.memory.MemoryCache
import coil.request.ErrorResult
import coil.request.ImageRequest
import coil.request.SuccessResult
import kotlin.time.Duration.Companion.seconds
import kotlinx.coroutines.launch
import me.saket.telephoto.zoomable.ZoomSpec
import me.saket.telephoto.zoomable.coil.ZoomableAsyncImage
Expand Down Expand Up @@ -406,7 +407,7 @@ fun VideoScreen(
useController = true
setShowNextButton(false)
setShowPreviousButton(false)
controllerShowTimeoutMs = 1000
controllerShowTimeoutMs = 1.seconds.inWholeMilliseconds.toInt()
}
},
)
Expand Down

0 comments on commit ba99a17

Please sign in to comment.