浏览代码

add missing await

Oren Novotny 9 年之前
父节点
当前提交
c4971c288e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Ix.NET/Source/System.Interactive.Async/Concatenate.cs

+ 1 - 1
Ix.NET/Source/System.Interactive.Async/Concatenate.cs

@@ -223,7 +223,7 @@ namespace System.Linq
 
                     checked
                     {
-                        count += await source.Count(cancellationToken);
+                        count += await source.Count(cancellationToken).ConfigureAwait(false);
                     }
                 }