Skip to content

Commit 1a2c872

Browse files
committed
Add missing 'else' in 'if..else if..else' block.
1 parent 3135176 commit 1a2c872

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mythtv/programs/mythbackend/mainserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,7 @@ void MainServer::HandleAnnounce(QStringList &slist, QStringList commands,
13701370
gCoreContext->SendSystemEvent(
13711371
QString("CLIENT_CONNECTED HOSTNAME %1").arg(commands[2]));
13721372
}
1373-
if (commands[1] == "MediaServer")
1373+
else if (commands[1] == "MediaServer")
13741374
{
13751375
if (commands.size() < 3)
13761376
{

0 commit comments

Comments
 (0)