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
parent 56ee681aec
commit 8f66d75eb3
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "real-debrid-downloader",
"version": "1.6.39",
"version": "1.6.40",
"description": "Desktop downloader",
"main": "build/main/main/main.js",
"author": "Sucukdeluxe",

View File

@ -291,6 +291,9 @@ function providerLabel(provider: DownloadItem["provider"]): string {
if (provider === "alldebrid") {
return "AllDebrid";
}
if (provider === "ddownload") {
return "DDownload";
}
return "Debrid";
}