chore/typo

s/entires/entries
This commit is contained in:
Marc Brooks 2025-06-09 19:58:25 -05:00 committed by GitHub
parent 7417da0e5c
commit 7037121bd0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -57,7 +57,7 @@ public class CleanupUserDataTask : IScheduledTask
await using (dbContext.ConfigureAwait(false))
{
var detachedUserData = dbContext.UserData.Where(e => e.ItemId == BaseItemRepository.PlaceholderId);
_logger.LogInformation("There are {NoDetached} detached UserData entires.", detachedUserData.Count());
_logger.LogInformation("There are {NoDetached} detached UserData entries.", detachedUserData.Count());
detachedUserData = detachedUserData.Where(e => e.RetentionDate < userDataDate);