Skip to content

Commit

Permalink
Fix a stupid typo which prevented url redirection working in mythvide…
Browse files Browse the repository at this point in the history
…o 0.23 and 0.22. Refs #8634

git-svn-id: http://svn.mythtv.org/svn/branches/release-0-23-fixes@25328 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
stuartm committed Jul 11, 2010
1 parent f742b98 commit 8ada3ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythplugins/mythvideo/mythvideo/videodlg.cpp
Expand Up @@ -140,7 +140,7 @@ namespace
if (header.statusCode() == 302 || header.statusCode() == 301 ||
header.statusCode() == 307)
{
QString m_redirectUrl = header.value("Location");
m_redirectUrl = header.value("Location");
m_redirectCount++;
}
else if (header.statusCode() == 404)
Expand Down

0 comments on commit 8ada3ed

Please sign in to comment.