From 77e934beabcd8e3e6fcdb5b62f00b55d8cadaa73 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sat, 24 Aug 2024 19:29:00 +0200 Subject: [PATCH] SpotifyService: Use LoginError --- src/spotify/spotifyservice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spotify/spotifyservice.cpp b/src/spotify/spotifyservice.cpp index b10f8a969..9d2943a42 100644 --- a/src/spotify/spotifyservice.cpp +++ b/src/spotify/spotifyservice.cpp @@ -449,7 +449,7 @@ void SpotifyService::AccessTokenRequestFinished(QNetworkReply *reply) { QJsonDocument json_doc = QJsonDocument::fromJson(data, &json_error); if (json_error.error != QJsonParseError::NoError) { - Error(QStringLiteral("Failed to parse Json data in authentication reply: %1").arg(json_error.errorString())); + LoginError(QStringLiteral("Failed to parse Json data in authentication reply: %1").arg(json_error.errorString())); return; }