We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 350a9d9 commit 89e7c93Copy full SHA for 89e7c93
src/SharpIDE.Godot/NodeExtensions.cs
@@ -229,7 +229,7 @@ public Task InvokeAsync(Func<Task> workItem)
229
{
230
try
231
232
- await workItem();
+ await workItem().ConfigureAwait(false);
233
taskCompletionSource.SetResult();
234
}
235
catch (Exception ex)
@@ -267,7 +267,7 @@ public Task InvokeDeferredAsync(Func<Task> workItem)
267
268
269
270
271
272
273
0 commit comments