Closed kernel32uiuc closed 8 years ago
Task.Factory.StartNew returns a nested task (Task). Awaiting a nested task is dangerous so we should always unwrap the nested task (with Unwrap() or using Task.Run) and await the inner task.
It failed due to an old version of TPL library. Replacing Task.Run with a double await (await await) and will send a new PR.
Task.Factory.StartNew returns a nested task (Task). Awaiting a nested task is dangerous so we should always unwrap the nested task (with Unwrap() or using Task.Run) and await the inner task.