1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-24 12:35:25 +01:00

Fix case inconsitency in provider migration (#1806)

This commit is contained in:
Oscar Hinton 2022-01-12 15:25:15 +01:00 committed by GitHub
parent f70fb5a74a
commit 2ed588d005
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1363,7 +1363,7 @@ BEGIN
[Date] >= @StartDate
AND (@BeforeDate IS NOT NULL OR [Date] <= @EndDate)
AND (@BeforeDate IS NULL OR [Date] < @BeforeDate)
AND [Providerid] = @ProviderId
AND [ProviderId] = @ProviderId
ORDER BY [Date] DESC
OFFSET 0 ROWS
FETCH NEXT @PageSize ROWS ONLY