From f7220cdd2207ae67901c01684a951eb5fc1135fa Mon Sep 17 00:00:00 2001 From: Silarn Date: Fri, 1 Feb 2019 19:31:22 -0600 Subject: Prevent runaway requests and fix info dialog description update display --- src/nexusinterface.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/nexusinterface.cpp') diff --git a/src/nexusinterface.cpp b/src/nexusinterface.cpp index 130a87b1..fee8a427 100644 --- a/src/nexusinterface.cpp +++ b/src/nexusinterface.cpp @@ -573,9 +573,8 @@ void NexusInterface::requestFinished(std::list::iterator iter) if (reply->error() != QNetworkReply::NoError) { int statusCode = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(); if (statusCode == 429) { - qWarning("Requests have hit the rate limit threshold and are now being throttled. This request will be retried."); + qWarning("All API requests have been consumed and are now being denied."); qWarning("Error: %s", reply->errorString().toUtf8().constData()); - m_RequestQueue.enqueue(*iter); } else { qWarning("request failed: %s", reply->errorString().toUtf8().constData()); } -- cgit v1.3.1