Adjust unrestrict retry status wording

This commit is contained in:
Sucukdeluxe 2026-03-09 00:53:23 +01:00
parent c225df0bcd
commit 3320f38e47

View File

@ -7022,7 +7022,12 @@ export class DownloadManager extends EventEmitter {
item.totalBytes = null;
this.dropItemContribution(item.id);
}
this.queueRetry(item, active, unrestrictDelayMs, `Unrestrict-Fehler, Retry ${active.unrestrictRetries}/${retryDisplayLimit} (${Math.ceil(unrestrictDelayMs / 1000)}s)`);
this.queueRetry(
item,
active,
unrestrictDelayMs,
`Link-Umwandlung erneut, Versuch ${active.unrestrictRetries}/${retryDisplayLimit} (${Math.ceil(unrestrictDelayMs / 1000)}s)`
);
item.lastError = errorText;
this.persistSoon();
this.emitState();