Update nugets

This commit is contained in:
Sébastien André
2020-09-02 00:10:52 +02:00
parent fac7a8c38a
commit ad18a02047
3 changed files with 7 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ namespace skydiveLogs_api.Data
.Include(x => x.JumpType)
.Include(x => x.User)
.Query()
.Where(j => j.User == user)
.Where(j => j.User.Id == user.Id)
.ToList();
}