Skip to content

Commit

Permalink
* Support https urls in Servent.
Browse files Browse the repository at this point in the history
  • Loading branch information
muesli committed Feb 14, 2013
1 parent 862f684 commit b6361ab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/libtomahawk/network/Servent.cpp
Expand Up @@ -87,6 +87,7 @@ Servent::Servent( QObject* parent )
{ {
boost::function<QSharedPointer<QIODevice>(result_ptr)> fac = boost::bind( &Servent::httpIODeviceFactory, this, _1 ); boost::function<QSharedPointer<QIODevice>(result_ptr)> fac = boost::bind( &Servent::httpIODeviceFactory, this, _1 );
this->registerIODeviceFactory( "http", fac ); this->registerIODeviceFactory( "http", fac );
this->registerIODeviceFactory( "https", fac );
} }
} }


Expand Down

0 comments on commit b6361ab

Please sign in to comment.