1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

SceneMapping uses new API endpoint

This commit is contained in:
Mark McDowall
2013-09-05 23:25:34 -07:00
parent a39125eb6c
commit e07b588fd8
3 changed files with 4 additions and 7 deletions
@@ -21,7 +21,7 @@ namespace NzbDrone.Core.DataAugmentation.Scene
public List<SceneMapping> Fetch()
{
var mappingsJson = _httpProvider.DownloadString(Services.RootUrl + "/SceneMapping/Active");
var mappingsJson = _httpProvider.DownloadString(Services.RootUrl + "/v1/SceneMapping");
return Json.Deserialize<List<SceneMapping>>(mappingsJson);
}
}