Revert "API: Don't be so strict with the downtime start_time"

This reverts commit 3b7cf5b9b5.
This commit is contained in:
Michael Friedrich 2019-08-01 14:03:40 +02:00
parent 924b0c6f24
commit 8f3a1335dc
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ Dictionary::Ptr ApiActions::ScheduleDowntime(const ConfigObject::Ptr& object,
String comment = HttpUtility::GetLastParameter(params, "comment");
double startTime = HttpUtility::GetLastParameter(params, "start_time");
double endTime = HttpUtility::GetLastParameter(params, "end_time");
double now = Utility::GetTime() - 10; //Take a request delay into account.
double now = Utility::GetTime();
if (author.IsEmpty() || comment.IsEmpty())
return ApiActions::CreateResult(400, "Options 'author' and 'comment' must not be empty");