Ticket #11905: mythtv.2.patch

File mythtv.2.patch, 647 bytes (added by dev-team@…, 13 years ago)

updated patch

  • libs/libmythupnp/httprequest.cpp

    diff --git libs/libmythupnp/httprequest.cpp libs/libmythupnp/httprequest.cpp
    index 929306c..f4393b9 100644
     
    12141214            m_sResourceUrl = m_sBaseUrl; // Save complete url without parameters
    12151215
    12161216            // 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 );
    12191218
    12201219            if (sQueryStr.length() > 0)
    12211220                GetParameters( sQueryStr, m_mapParams );