Fix TriggerEvent.SetCancel

This commit is contained in:
hadashiA
2023-09-03 20:40:04 +09:00
parent 22940635fe
commit af2e49aa29

View File

@@ -86,8 +86,8 @@ namespace Cysharp.Threading.Tasks
LogError(ex);
}
iteratingNode = null;
var next = h == iteratingNode ? h.Next : iteratingNode;
iteratingNode = null;
Remove(h);
h = next;
}