diff --git libs/libmythupnp/httprequest.cpp libs/libmythupnp/httprequest.cpp
index 929306c..0def7e0 100644
--- libs/libmythupnp/httprequest.cpp
+++ libs/libmythupnp/httprequest.cpp
@@ -945,12 +945,10 @@
             QString sName  = (*it).section( '=', 0, 0 );
             QString sValue = (*it).section( '=', 1 );
             sValue.replace("+"," ");
-
             if ((sName.length() != 0) && (sValue.length() !=0))
             {
                 sName  = QUrl::fromPercentEncoding(sName.toUtf8());
                 sValue = QUrl::fromPercentEncoding(sValue.toUtf8());
-
                 mapParams.insert( sName.trimmed(), sValue );
                 nCount++;
             }
@@ -1214,8 +1212,7 @@
             m_sResourceUrl = m_sBaseUrl; // Save complete url without parameters
 
             // Process any Query String Parameters
-            QString sQueryStr = (QUrl::fromPercentEncoding(tokens[1].toUtf8()))
-                                     .section( '?', 1, 1 );
+            QString sQueryStr = tokens[1].section( '?', 1, 1 );
 
             if (sQueryStr.length() > 0)
                 GetParameters( sQueryStr, m_mapParams );
