From 2ca08fdec55f5ff9da0781a99b5c8fc67ec34a57 Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Thu, 7 May 2026 23:39:46 -0500 Subject: [PATCH] Fix archives not downloading for redists --- LANCommander.Server/Endpoints/GameEndpoints.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/LANCommander.Server/Endpoints/GameEndpoints.cs b/LANCommander.Server/Endpoints/GameEndpoints.cs index 21abe035..5b322988 100644 --- a/LANCommander.Server/Endpoints/GameEndpoints.cs +++ b/LANCommander.Server/Endpoints/GameEndpoints.cs @@ -107,6 +107,7 @@ public static class GameEndpoints .Include(g => g.Platforms) .Include(g => g.Publishers) .Query(q => q.Include(d => d.Redistributables).ThenInclude(r => r.Scripts)) + .Query(q => q.Include(d => d.Redistributables).ThenInclude(r => r.Archives)) .Include(g => g.Scripts) .Include(g => g.Tags) .AsNoTracking()