1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-05 13:21:25 -05:00

Remove unused calendar parameter

This commit is contained in:
Qstick
2022-10-07 21:26:25 -05:00
committed by GitHub
parent 0c79548fc4
commit f6904608a7

View File

@@ -41,7 +41,7 @@ namespace Radarr.Api.V3.Calendar
}
[HttpGet]
public List<MovieResource> GetCalendar(DateTime? start, DateTime? end, bool unmonitored = false, bool includeArtist = false)
public List<MovieResource> GetCalendar(DateTime? start, DateTime? end, bool unmonitored = false)
{
var startUse = start ?? DateTime.Today;
var endUse = end ?? DateTime.Today.AddDays(2);