diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c2c51b..b1ef0f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.93] - 2025-01-03 +### Changed +- Torbox fixes. + ## [2.0.92] - 2024-12-18 ### Changed - Torbox fixes. diff --git a/package.json b/package.json index d5031ff..d88bfe2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rdt-client", - "version": "2.0.92", + "version": "2.0.93", "description": "This is a web interface to manage your torrents on Real-Debrid.", "main": "index.js", "dependencies": { diff --git a/server/RdtClient.Service/Services/TorrentClients/TorBoxTorrentClient.cs b/server/RdtClient.Service/Services/TorrentClients/TorBoxTorrentClient.cs index 1a9e5dc..8775072 100644 --- a/server/RdtClient.Service/Services/TorrentClients/TorBoxTorrentClient.cs +++ b/server/RdtClient.Service/Services/TorrentClients/TorBoxTorrentClient.cs @@ -164,7 +164,7 @@ public class TorBoxTorrentClient(ILogger logger, IHttpClien }).ToList(); } - return new List(); + return []; } public Task SelectFiles(Data.Models.Data.Torrent torrent)