Ticket #11905: mythtv.2.patch
| File mythtv.2.patch, 647 bytes (added by , 13 years ago) |
|---|
-
libs/libmythupnp/httprequest.cpp
diff --git libs/libmythupnp/httprequest.cpp libs/libmythupnp/httprequest.cpp index 929306c..f4393b9 100644
1214 1214 m_sResourceUrl = m_sBaseUrl; // Save complete url without parameters 1215 1215 1216 1216 // Process any Query String Parameters 1217 QString sQueryStr = (QUrl::fromPercentEncoding(tokens[1].toUtf8())) 1218 .section( '?', 1, 1 ); 1217 QString sQueryStr = tokens[1].section( '?', 1, 1 ); 1219 1218 1220 1219 if (sQueryStr.length() > 0) 1221 1220 GetParameters( sQueryStr, m_mapParams );
