Skip to content

Commit

Permalink
fix for ocassional crash on the universe view
Browse files Browse the repository at this point in the history
  • Loading branch information
BitBaboonSteve committed Oct 12, 2023
1 parent da7d388 commit 213f526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SMT/UniverseControl.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1098,7 +1098,7 @@ public void ReDrawMap(bool FullRedraw = false, bool DataRedraw = false, bool Fas
// now add the zkill data
Dictionary<string, int> ZKBBaseFeed = new Dictionary<string, int>();
{
foreach (EVEData.ZKillRedisQ.ZKBDataSimple zs in EM.ZKillFeed.KillStream)
foreach (EVEData.ZKillRedisQ.ZKBDataSimple zs in EM.ZKillFeed.KillStream.ToList())
{
if (ZKBBaseFeed.ContainsKey(zs.SystemName))
{
Expand Down

0 comments on commit 213f526

Please sign in to comment.