UI: TaskInfo::handleFinished: Fix typo

This commit is contained in:
Nodir Temirkhodjaev 2024-10-20 10:57:08 +05:00
parent f1c500cd51
commit 86b226b986

View File

@ -149,7 +149,7 @@ void TaskInfo::handleFinished(bool success)
m_failedCount = 0;
} else {
if (++m_failedCount >= maxRetries()) {
if (++m_failedCount > maxRetries()) {
m_failedCount = 0;
}
}