Update Aaru linked dependencies to v6.0.0-alpha.10.

This commit is contained in:
2025-04-27 12:01:17 +01:00
parent 94d330fe88
commit f7a1a134ba
11 changed files with 4627 additions and 83 deletions

View File

@@ -266,13 +266,13 @@ public sealed class UploadStatsController : ControllerBase
foreach(MediaStats media in newstats.Medias)
{
Media? existing =
await _ctx.Medias.FirstOrDefaultAsync(c => c.Type == media.type && c.Real == media.real);
await _ctx.Medias.FirstOrDefaultAsync(c => c.Type == media.MediaType && c.Real == media.real);
if(existing == null)
{
_ctx.Medias.Add(new Media
{
Type = media.type,
Type = media.MediaType,
Real = media.real,
Count = media.Value
});