Show DDownload provider label instead of generic Debrid in status

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-05 02:42:19 +01:00
co-authored by Claude Opus 4.6
parent 56ee681aec
commit 8f66d75eb3
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "real-debrid-downloader", "name": "real-debrid-downloader",
"version": "1.6.39", "version": "1.6.40",
"description": "Desktop downloader", "description": "Desktop downloader",
"main": "build/main/main/main.js", "main": "build/main/main/main.js",
"author": "Sucukdeluxe", "author": "Sucukdeluxe",
+3
View File
@@ -291,6 +291,9 @@ function providerLabel(provider: DownloadItem["provider"]): string {
if (provider === "alldebrid") { if (provider === "alldebrid") {
return "AllDebrid"; return "AllDebrid";
} }
if (provider === "ddownload") {
return "DDownload";
}
return "Debrid"; return "Debrid";
} }