Fixed torrent content_path.

This commit is contained in:
Roger Far 2021-01-13 13:15:44 -07:00
parent 64d1250345
commit d029319ed1

View file

@ -240,6 +240,8 @@ namespace RdtClient.Service.Services
downloadPath = Path.Combine(downloadPath, torrent.Category); downloadPath = Path.Combine(downloadPath, torrent.Category);
} }
var torrentPath = Path.Combine(downloadPath, torrent.RdName);
var result = new TorrentInfo var result = new TorrentInfo
{ {
AddedOn = torrent.RdAdded.ToUnixTimeSeconds(), AddedOn = torrent.RdAdded.ToUnixTimeSeconds(),
@ -270,7 +272,7 @@ namespace RdtClient.Service.Services
Progress = (Int64) (torrent.RdProgress / 100.0), Progress = (Int64) (torrent.RdProgress / 100.0),
Ratio = 1, Ratio = 1,
RatioLimit = 1, RatioLimit = 1,
ContentPath = downloadPath, ContentPath = torrentPath,
SavePath = downloadPath, SavePath = downloadPath,
SeedingTimeLimit = 1, SeedingTimeLimit = 1,
SeenComplete = DateTimeOffset.UtcNow.ToUnixTimeSeconds(), SeenComplete = DateTimeOffset.UtcNow.ToUnixTimeSeconds(),