Skip to content

Commit

Permalink
fix(ios)/supportsTranscoding-requirement-weakened (#977)
Browse files Browse the repository at this point in the history
Co-authored-by: Danil Mironov <[email protected]>
Co-authored-by: Anton Malinskiy <[email protected]>
  • Loading branch information
3 people authored Oct 11, 2024
1 parent af558d3 commit 56693c9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ class AppleSimulatorDevice(

deviceFeatures = detectFeatures()

supportsTranscoding = executeWorkerCommand(listOf(vendorConfiguration.screenRecordConfiguration.videoConfiguration.transcoding.binary, "-version"))?.let {
val transcodingVideoConfiguration = vendorConfiguration.screenRecordConfiguration.videoConfiguration.transcoding
supportsTranscoding = transcodingVideoConfiguration.enabled && executeWorkerCommand(listOf(transcodingVideoConfiguration.binary, "-version"))?.let {
if (it.successful) {
true
} else {
Expand Down

0 comments on commit 56693c9

Please sign in to comment.