csharp: Calling ConfigureAwait on task eopromises.

Summary: ref T8424

Reviewers: lauromoura, felipealmeida, YOhoho, segfaultxavi

Reviewed By: lauromoura

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Maniphest Tasks: T8424

Differential Revision: https://phab.enlightenment.org/D10495
This commit is contained in:
Bruno da Silva Belo 2019-10-25 11:17:53 -03:00 committed by Mike Blumenkrantz
parent a3f84181e8
commit 13bac4bfe1
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class LoopConsumer
public static async Task Consume(Efl.Loop loop)
{
Task<Eina.Value> task = loop.IdleAsync();
Eina.Value v = await task;
Eina.Value v = await task.ConfigureAwait(false);
loop.Quit(v);
}
}