Skip to content

Commit

Permalink
TidalUrlHandler: service is already a pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaski committed Jul 21, 2023
1 parent 95eed1e commit 0e19216
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tidal/tidalurlhandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ TidalUrlHandler::TidalUrlHandler(Application *app, TidalService *service)
app_(app),
service_(service) {

QObject::connect(&*service, &TidalService::StreamURLFailure, this, &TidalUrlHandler::GetStreamURLFailure);
QObject::connect(&*service, &TidalService::StreamURLSuccess, this, &TidalUrlHandler::GetStreamURLSuccess);
QObject::connect(service, &TidalService::StreamURLFailure, this, &TidalUrlHandler::GetStreamURLFailure);
QObject::connect(service, &TidalService::StreamURLSuccess, this, &TidalUrlHandler::GetStreamURLSuccess);

}

Expand Down

0 comments on commit 0e19216

Please sign in to comment.