Skip to content

Commit

Permalink
Fix missing parameter in SG filelist query. Patch from fedora a t rea…
Browse files Browse the repository at this point in the history
…dy2think.

Thanks very much for recognizing and fixing this.  Fixes #9350.
  • Loading branch information
Robert McNamara committed Dec 9, 2010
1 parent f095506 commit 2ec3a29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythbackend/playbacksock.cpp
Expand Up @@ -242,7 +242,7 @@ QStringList PlaybackSock::GetSGFileList(QString &host, QString &groupname,
strlist << host;
strlist << groupname;
strlist << directory;
QString::number(fileNamesOnly);
strlist << QString::number(fileNamesOnly);

SendReceiveStringList(strlist);

Expand Down

0 comments on commit 2ec3a29

Please sign in to comment.