1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 04:03:25 +00:00

Removing extra semi colon (#6246)

This commit is contained in:
Jared McCannon
2025-08-25 14:34:06 -05:00
committed by GitHub
parent 236027fc22
commit a7fc89a5bb

View File

@@ -39,7 +39,7 @@ public class EventRepository : IEventRepository
DateTime startDate, DateTime endDate, PageOptions pageOptions)
{
return await GetManyAsync($"OrganizationId={secret.OrganizationId}",
$"SecretId={secret.Id}__Date={{0}}", startDate, endDate, pageOptions); ;
$"SecretId={secret.Id}__Date={{0}}", startDate, endDate, pageOptions);
}
public async Task<PagedResult<IEvent>> GetManyByProjectAsync(Project project,