1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Fixed: Calculates wrong age for releases pushed via ReleasePush api.

closes Zymest/autodl-curl-sonarr#3
This commit is contained in:
Taloth Saldono
2017-07-13 16:57:45 +02:00
parent d4e771117d
commit c68ef626d2
5 changed files with 51 additions and 3 deletions
@@ -0,0 +1,13 @@
using NzbDrone.Api.Indexers;
using RestSharp;
namespace NzbDrone.Integration.Test.Client
{
public class ReleasePushClient : ClientBase<ReleaseResource>
{
public ReleasePushClient(IRestClient restClient, string apiKey)
: base(restClient, apiKey, "release/push")
{
}
}
}