1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-18 08:19:38 +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] [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 startUse = start ?? DateTime.Today;
var endUse = end ?? DateTime.Today.AddDays(2); var endUse = end ?? DateTime.Today.AddDays(2);