NOISSUE Remove some unused code

This commit is contained in:
arthomnix 2023-02-06 16:29:24 +00:00
parent 413397c3c1
commit 4c216753ba
2 changed files with 1 additions and 9 deletions

View File

@ -122,13 +122,6 @@ void Download::downloadError(QNetworkReply::NetworkError error)
qCritical() << "Aborted " << m_url.toString();
m_status = Job_Aborted;
}
else if(error == QNetworkReply::ContentNotFoundError && (m_options & Option::AllowNotFound))
{
// The Modrinth API returns a 404 when a hash was not found when performing reverse hash lookup, we don't want to treat this as a failure
qDebug() << "Received 404 from " << m_url.toString() << ", continuing...";
m_status = Job_Finished;
return;
}
else
{
if(m_options & Option::AcceptLocalFiles)

View File

@ -32,8 +32,7 @@ public: /* types */
enum class Option
{
NoOptions = 0,
AcceptLocalFiles = 1,
AllowNotFound = 2
AcceptLocalFiles = 1
};
Q_DECLARE_FLAGS(Options, Option)