Skip to content

Commit

Permalink
fix: double dispose of proxy handles
Browse files Browse the repository at this point in the history
Closes: #456
  • Loading branch information
bdunderscore committed Oct 19, 2024
1 parent b6b55fe commit 992f3dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Editor/PreviewSystem/Rendering/ProxyPipeline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -383,11 +383,11 @@ public void Dispose()
node.Result.Dispose();
}
}
}
foreach (var proxy in _proxies.Values)
{
proxy.Dispose();
}
foreach (var proxy in _proxies.Values)
{
proxy.Dispose();
}
},
CancellationToken.None,
Expand Down

0 comments on commit 992f3dd

Please sign in to comment.