fixes the compile and timestamps to db

This commit is contained in:
Paul Schneider 2026-07-11 03:26:13 +01:00
commit f27f65c2d3
15 changed files with 36 additions and 36 deletions

View file

@ -145,7 +145,7 @@ namespace Yavsc.Services
if (Channels.TryRemove(roomName, out deadchanInfo))
{
var room = _dbContext.ChatRoom.FirstOrDefault(r => r.Name == roomName);
room.LatestJoinPart = DateTime.Now;
room.LatestJoinPart = DateTime.UtcNow;
_dbContext.SaveChanges();
}
}