1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-07 16:34:45 -04:00

KiwiSDR: analyze address on input to accept fully formed urls like http://host:port/ found on the web directory

This commit is contained in:
f4exb
2022-10-08 12:45:37 +02:00
parent 79b7e16c29
commit edab4f0b33
2 changed files with 12 additions and 2 deletions
@@ -139,8 +139,10 @@ void KiwiSDRWorker::onGainChanged(quint32 gain, bool useAGC)
void KiwiSDRWorker::onServerAddressChanged(QString serverAddress)
{
if (m_serverAddress == serverAddress)
if (m_serverAddress == serverAddress) {
return;
}
m_serverAddress = serverAddress;
m_status = 1;