1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-24 09:49:42 +01:00

* Support https urls in Servent.

This commit is contained in:
Christian Muehlhaeuser 2013-01-30 13:41:11 +01:00
parent 862f684768
commit b6361abdd7

View File

@ -87,6 +87,7 @@ Servent::Servent( QObject* parent )
{
boost::function<QSharedPointer<QIODevice>(result_ptr)> fac = boost::bind( &Servent::httpIODeviceFactory, this, _1 );
this->registerIODeviceFactory( "http", fac );
this->registerIODeviceFactory( "https", fac );
}
}