MusixmatchLyricsProvider: Fix error message

This commit is contained in:
Jonas Kvinge 2022-10-21 20:54:16 +02:00
parent 8dce9cc938
commit e33ffd1c8a
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ void MusixmatchLyricsProvider::HandleSearchReply(QNetworkReply *reply, LyricsSea
int status_code = obj_header["status_code"].toInt();
if (status_code != 200) {
Error(QString("Received status code %s").arg(status_code));
Error(QString("Received status code %1").arg(status_code));
if (status_code == 402) {
rate_limit_exceeded_ = true;
CreateLyricsRequest(search);