From 3320f38e47b0dbb42a8413e093846e8b95ede079 Mon Sep 17 00:00:00 2001 From: Sucukdeluxe Date: Mon, 9 Mar 2026 00:53:23 +0100 Subject: [PATCH] Adjust unrestrict retry status wording --- src/main/download-manager.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/download-manager.ts b/src/main/download-manager.ts index 73d2f9e..dd79cea 100644 --- a/src/main/download-manager.ts +++ b/src/main/download-manager.ts @@ -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();