From f1bdc7d8b416aca96d84197b9205f9615f198e30 Mon Sep 17 00:00:00 2001 From: Wald764 Date: Mon, 3 Feb 2025 00:49:07 +0100 Subject: [PATCH] :recycle: fix a reference to RD instead of DL in DebridLinkTorrentClient --- .../Services/TorrentClients/DebridLinkTorrentClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/RdtClient.Service/Services/TorrentClients/DebridLinkTorrentClient.cs b/server/RdtClient.Service/Services/TorrentClients/DebridLinkTorrentClient.cs index 92225d5..edbc911 100644 --- a/server/RdtClient.Service/Services/TorrentClients/DebridLinkTorrentClient.cs +++ b/server/RdtClient.Service/Services/TorrentClients/DebridLinkTorrentClient.cs @@ -29,7 +29,7 @@ public class DebridLinkClient : ITorrentClient if (String.IsNullOrWhiteSpace(apiKey)) { - throw new Exception("Real-Debrid API Key not set in the settings"); + throw new Exception("DebridLink API Key not set in the settings"); } var httpClient = _httpClientFactory.CreateClient();