Skip to content

Commit

Permalink
toggle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sheiladoherty-dolby committed Jul 18, 2024
1 parent db7e345 commit bcec92a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ struct StreamDetailInputScreen: View {
let saveLogs = false
let playoutDelayMin = showPlayoutDelay ? UInt(minPlayoutDelay) : nil
let playoutDelayMax = showPlayoutDelay ? UInt(maxPlayoutDelay) : nil
let maxBitrate: UInt = UInt(maxBitrateString) ?? 0
let maxBitrate: UInt = isShowingMaxBitrate ? UInt(maxBitrateString) ?? 0 : 0

RecentStreamCell(streamDetail: SavedStreamDetail(
accountID: accountID,
Expand Down

0 comments on commit bcec92a

Please sign in to comment.