Update about the showing the user images

This commit is contained in:
Sébastien André
2021-03-26 15:05:06 +01:00
parent 9d51f38f2e
commit fe255041cc
12 changed files with 70 additions and 71 deletions

View File

@@ -26,7 +26,7 @@ namespace skydiveLogs_api.Infrastructure
{
return _col.Include(x => x.User)
.Query()
.Where(j => j.User == user)
.Where(j => j.User.Id == user.Id)
.ToList();
}