Skip to content

Commit

Permalink
analizators/s2178
Browse files Browse the repository at this point in the history
  • Loading branch information
SuhorukovAnton committed Jan 19, 2022
1 parent 25050cb commit cbab9c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/services/ASC.AuditTrail/AuditEventsRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public int GetCount(int tenant, DateTime? from = null, DateTime? to = null)

if (from.HasValue && to.HasValue)
{
query = query.Where(a => a.Date >= from & a.Date <= to);
query = query.Where(a => a.Date >= from && a.Date <= to);
}

return query.Count();
Expand Down

0 comments on commit cbab9c4

Please sign in to comment.