Skip to content

Commit

Permalink
Fix possible race condition
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbrechtL committed Oct 9, 2024
1 parent de9e70a commit 330ee0a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/welle-gui/QML/settingpages/RTLTCPSettings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,8 @@ SettingSection {
settings.ipByte3 = 0
settings.ipByte4 = 0
}
else {
serverAddress = hostName.text
}

guiHelper.openRtlTcp(serverAddress, hostPort.text, true)
guiHelper.openRtlTcp(hostName.text, hostPort.text, true)
}
}

0 comments on commit 330ee0a

Please sign in to comment.