diff --git a/CHANGELOG.md b/CHANGELOG.md index 1255bfc..06b3cf4 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). +## [1.7.3] - 2021-04-19 +### Changed +- Fixed issue (hopefully) where sometimes the name of the torrent would change. + ## [1.7.2] - 2021-04-14 ### Changed - Fixed issue where sometimes the content path is not recognized by Sonarr. diff --git a/client/src/app/navbar/navbar.component.html b/client/src/app/navbar/navbar.component.html index 8ecab80..783ea16 100644 --- a/client/src/app/navbar/navbar.component.html +++ b/client/src/app/navbar/navbar.component.html @@ -49,7 +49,7 @@ Profile Logout - + diff --git a/package.json b/package.json index 6af5186..7b3239d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rdt-client", - "version": "1.7.2", + "version": "1.7.3", "description": "This is a web interface to manage your torrents on Real-Debrid.", "main": "index.js", "dependencies": { diff --git a/server/RdtClient.Service/Services/Torrents.cs b/server/RdtClient.Service/Services/Torrents.cs index 95561fb..cdd2edf 100644 --- a/server/RdtClient.Service/Services/Torrents.cs +++ b/server/RdtClient.Service/Services/Torrents.cs @@ -439,10 +439,6 @@ namespace RdtClient.Service.Services { torrent.RdName = rdTorrent.Filename; } - else if (!String.IsNullOrWhiteSpace(rdTorrent.OriginalFilename)) - { - torrent.RdName = rdTorrent.OriginalFilename; - } if (rdTorrent.Bytes > 0) { diff --git a/server/RdtClient.Web/RdtClient.Web.csproj b/server/RdtClient.Web/RdtClient.Web.csproj index 1844068..7e48c44 100644 --- a/server/RdtClient.Web/RdtClient.Web.csproj +++ b/server/RdtClient.Web/RdtClient.Web.csproj @@ -4,7 +4,7 @@ net5.0 Exe 94c24cba-f03f-4453-a671-3640b517c573 - 1.7.2 + 1.7.3