mirror of
https://github.com/Sonarr/Sonarr
synced 2025-03-03 10:17:17 +00:00
CalendarModule uses injectTo instead of AutoMapper
This commit is contained in:
parent
b12b8724b9
commit
23e9c725f3
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ using AutoMapper;
|
|||
using Nancy;
|
||||
using NzbDrone.Api.Episodes;
|
||||
using NzbDrone.Api.Extensions;
|
||||
using NzbDrone.Api.Mapping;
|
||||
using NzbDrone.Core.Tv;
|
||||
|
||||
namespace NzbDrone.Api.Calendar
|
||||
|
@ -32,7 +33,7 @@ namespace NzbDrone.Api.Calendar
|
|||
if(queryEnd.HasValue) end = DateTime.Parse(queryEnd.Value);
|
||||
|
||||
var episodes = _episodeService.EpisodesBetweenDates(start, end);
|
||||
return Mapper.Map<List<Episode>, List<EpisodeResource>>(episodes).AsResponse();
|
||||
return episodes.InjectTo<List<EpisodeResource>>().AsResponse();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue