mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 19:35:10 +01:00
Limit total number of operation retries
This commit is contained in:
@@ -95,7 +95,10 @@ public class AdapterOperation extends RecyclerView.Adapter<AdapterOperation.View
|
||||
view.setAlpha(operation.synchronize ? 1.0f : Helper.LOW_LIGHT);
|
||||
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(operation.name).append(':').append(operation.priority);
|
||||
sb
|
||||
.append(operation.name).append(':')
|
||||
.append(operation.priority).append("/")
|
||||
.append(operation.tries);
|
||||
try {
|
||||
JSONArray jarray = new JSONArray(operation.args);
|
||||
if (jarray.length() > 0)
|
||||
|
||||
Reference in New Issue
Block a user