Use DateTime.Now instead of DateTime.UtcNow

This commit is contained in:
2025-11-24 15:05:43 +09:00
parent 3ccccd2467
commit be3d369575
13 changed files with 24 additions and 24 deletions

View File

@ -46,7 +46,7 @@ namespace Hcs.WebApp.BackgroundServices.DataParsers
HcsId = Guid.Parse(hcsId),
IsMkd = isMkd,
IsZhd = !isMkd,
SyncedAt = DateTime.UtcNow,
SyncedAt = DateTime.Now,
LastSyncOperationId = operation.Id
});
}
@ -78,7 +78,7 @@ namespace Hcs.WebApp.BackgroundServices.DataParsers
using var transaction = await context.Database.BeginTransactionAsync();
try
{
var now = DateTime.UtcNow;
var now = DateTime.Now;
var fileToParse = await fileToParseService.GetFileToParseByOperationIdAsync(context, operation.Id);
fileToParse.ParsedAt = now;