From cd2af6974cf2f747fd2873247893d23dd971594f Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Mon, 1 Apr 2019 22:54:10 +0200 Subject: [PATCH] Remove ignore for content not found --- src/tidal/tidalservice.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/tidal/tidalservice.cpp b/src/tidal/tidalservice.cpp index 309800d70..f323f514d 100644 --- a/src/tidal/tidalservice.cpp +++ b/src/tidal/tidalservice.cpp @@ -374,9 +374,6 @@ QByteArray TidalService::GetReplyData(QNetworkReply *reply, QString &error, cons error = Error(failure_reason); } } - else if (reply->error() == QNetworkReply::ContentNotFoundError) { // Ignore this error - qLog(Error) << "Tidal:" << failure_reason; - } else { // Fail error = Error(failure_reason); }