1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-07 04:19:25 +02: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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ protected override MovieResource GetResourceById(int id)
}
[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);