Skip to content

Commit

Permalink
Fix: Briefings from failed generations leaking into final generation
Browse files Browse the repository at this point in the history
  • Loading branch information
john681611 committed Jan 7, 2025
1 parent 79b5f2e commit 22c6b2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BriefingRoom/Mission/DCSMissionBriefing.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ internal DCSMissionBriefing(DCSMissionBriefing oldBriefing)
{
Name = oldBriefing.Name;
Description = oldBriefing.Description;
Items = oldBriefing.Items.ToDictionary(x => x.Key, x => x.Value);
Items = oldBriefing.Items.ToDictionary(x => x.Key, x => x.Value.ToList());
FlightBriefings = oldBriefing.FlightBriefings.ToList();
}

Expand Down

0 comments on commit 22c6b2a

Please sign in to comment.