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
1 changed files with 1 additions and 1 deletions

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);