1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-31 11:53:06 +00:00

DailySeries uses new endpoint

This commit is contained in:
Mark McDowall 2013-09-06 00:16:13 -07:00
parent 67555db685
commit cb6c8729b1

View file

@ -28,7 +28,7 @@ public IEnumerable<int> GetDailySeriesIds()
{
try
{
var dailySeriesIds = _httpProvider.DownloadString(Services.RootUrl + "/DailySeries/AllIds");
var dailySeriesIds = _httpProvider.DownloadString(Services.RootUrl + "/v1/DailySeries");
var seriesIds = Json.Deserialize<List<int>>(dailySeriesIds);
@ -46,7 +46,7 @@ public bool IsDailySeries(int tvdbid)
{
try
{
var result = _httpProvider.DownloadString(Services.RootUrl + "/DailySeries/Check?seriesId=" + tvdbid);
var result = _httpProvider.DownloadString(Services.RootUrl + "/v1/DailySeries?seriesId=" + tvdbid);
return Convert.ToBoolean(result);
}
catch (Exception ex)