mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Removed conflicting JavaScript additions, that broke Series Details.
This commit is contained in:
parent
735668f7b3
commit
d83ae9895c
3 changed files with 3 additions and 14 deletions
|
@ -35,7 +35,6 @@ namespace NzbDrone.Web.Controllers
|
|||
return View();
|
||||
}
|
||||
|
||||
|
||||
public ActionResult Sync()
|
||||
{
|
||||
_syncProvider.BeginSyncUnmappedFolders();
|
||||
|
@ -48,13 +47,11 @@ namespace NzbDrone.Web.Controllers
|
|||
return RedirectToAction("Index");
|
||||
}
|
||||
|
||||
|
||||
public ActionResult UnMapped()
|
||||
{
|
||||
return View(_seriesProvider.GetUnmappedFolders().Select(c => new MappingModel() { Id = 1, Path = c.Value }).ToList());
|
||||
}
|
||||
|
||||
|
||||
public ActionResult LoadEpisodes(int seriesId)
|
||||
{
|
||||
_episodeProvider.RefreshEpisodeInfo(seriesId);
|
||||
|
@ -64,7 +61,6 @@ namespace NzbDrone.Web.Controllers
|
|||
});
|
||||
}
|
||||
|
||||
|
||||
[GridAction]
|
||||
public ActionResult _AjaxSeasonGrid(int seasonId)
|
||||
{
|
||||
|
@ -80,8 +76,6 @@ namespace NzbDrone.Web.Controllers
|
|||
return View(new GridModel(episodes));
|
||||
}
|
||||
|
||||
|
||||
|
||||
[GridAction]
|
||||
public ActionResult _CustomBinding(GridCommand command, int seasonId)
|
||||
{
|
||||
|
@ -163,12 +157,9 @@ namespace NzbDrone.Web.Controllers
|
|||
return RedirectToAction("UnMapped");
|
||||
}
|
||||
|
||||
|
||||
public ActionResult Details(int seriesId)
|
||||
{
|
||||
return View(_seriesProvider.GetSeries(seriesId));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue