mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 02:37:16 +00:00
Limit number of group retries
This commit is contained in:
parent
b4e51860e7
commit
84b337a852
1 changed files with 1 additions and 1 deletions
|
@ -512,7 +512,7 @@ class Core {
|
|||
db.endTransaction();
|
||||
}
|
||||
|
||||
if (similar.size() > 0) {
|
||||
if (similar.size() > 0 && op.tries < TOTAL_RETRY_MAX) {
|
||||
// Retry individually
|
||||
group = false;
|
||||
// Finally will reset state
|
||||
|
|
Loading…
Reference in a new issue