mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-15 02:34:14 +01:00
fixes for file uploads
This commit is contained in:
parent
bff6a3dca5
commit
3a6c9259a0
4 changed files with 36 additions and 15 deletions
|
|
@ -85,7 +85,7 @@ namespace MareSynchronosServices
|
|||
|
||||
_logger.LogInformation("Cleaning up users older than {usersOlderThanDays} days", usersOlderThanDays);
|
||||
|
||||
var allUsers = dbContext.Users.ToList();
|
||||
var allUsers = dbContext.Users.Where(u => string.IsNullOrEmpty(u.Alias)).ToList();
|
||||
List<User> usersToRemove = new();
|
||||
foreach (var user in allUsers)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue