It seems that recently sonarr and radarr have changed the qbittorrent inegration such at the torrents/files endpoint is required for file mapping to work. I've tested this against both sonarr and radarr, and things seem to be working.
11 lines
206 B
C#
11 lines
206 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace RdtClient.Service.Models.QBittorrent
|
|
{
|
|
public class TorrentFileItem
|
|
{
|
|
[JsonProperty("name")]
|
|
public String Name { get; set; }
|
|
}
|
|
}
|