QobuzService: Remove QNetworkReply

This commit is contained in:
Jonas Kvinge
2025-12-18 20:39:21 +01:00
parent 91adf5ba32
commit d1ee27fff9

View File

@@ -310,6 +310,10 @@ void QobuzService::HandleLoginSSLErrors(const QList<QSslError> &ssl_errors) {
void QobuzService::HandleAuthReply(QNetworkReply *reply) {
if (replies_.contains(reply)) {
replies_.removeAll(reply);
}
QObject::disconnect(reply, nullptr, this, nullptr);
reply->deleteLater();
login_sent_ = false;