We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 174207c commit 6ffb557Copy full SHA for 6ffb557
mythtv/programs/mythfrontend/networkcontrol.cpp
@@ -317,14 +317,11 @@ void NetworkControl::processNetworkControlCommand(NetworkCommand *nc)
317
result = QString("INVALID command '%1', try 'help' for more info")
318
.arg(nc->getArg(0));
319
320
- if (!result.isEmpty())
321
- {
322
- nrLock.lock();
323
- networkControlReplies.push_back(new NetworkCommand(nc->getClient(),result));
324
- nrLock.unlock();
+ nrLock.lock();
+ networkControlReplies.push_back(new NetworkCommand(nc->getClient(),result));
+ nrLock.unlock();
325
326
- notifyDataAvailable();
327
- }
+ notifyDataAvailable();
328
}
329
330
void NetworkControl::deleteClient(void)
0 commit comments