1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

swap dates if start > end

This commit is contained in:
Kyle Spearrin 2017-12-14 13:24:26 -05:00
parent adc23bf007
commit 7cd50eccf0

View File

@ -74,9 +74,16 @@ namespace Bit.Api.Controllers
}
}
if(start.Value > end.Value || (end.Value - start.Value) > TimeSpan.FromDays(32))
if(start.Value > end.Value)
{
throw new BadRequestException("Invalid date range.");
var newEnd = start;
start = end;
end = newEnd;
}
if((end.Value - start.Value) > TimeSpan.FromDays(367))
{
throw new BadRequestException("Range too large.");
}
return new Tuple<DateTime, DateTime>(start.Value, end.Value);