Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add @ to valid chars on mythfrontend network control command line.
This should allow myth://StorageGroup@hostname/ type URLs to work.
  • Loading branch information
cpinkham committed Nov 8, 2011
1 parent 2b55759 commit 31e9528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/networkcontrol.cpp
Expand Up @@ -416,7 +416,7 @@ void NetworkControlClient::readClient(void)
while (socket->canReadLine())
{
lineIn = socket->readLine();
lineIn.replace(QRegExp("[^-a-zA-Z0-9\\s\\.:_#/$%&()*+,;<=>?\\[\\]\\|]"), "");
lineIn.replace(QRegExp("[^-a-zA-Z0-9\\s\\.:_@#/$%&()*+,;<=>?\\[\\]\\|]"), "");
lineIn.replace(QRegExp("[\r\n]"), "");
lineIn.replace(QRegExp("^\\s"), "");

Expand Down

0 comments on commit 31e9528

Please sign in to comment.