[AudioIO] Add ConfigureAwait to task (#1038)
authorhsgwon <haesu.gwon@samsung.com>
Wed, 25 Sep 2019 06:34:43 +0000 (15:34 +0900)
committerGitHub <noreply@github.com>
Wed, 25 Sep 2019 06:34:43 +0000 (15:34 +0900)
src/Tizen.Multimedia.AudioIO/WavPlayer/WavPlayer.cs

index 37f3762..5c159d5 100644 (file)
@@ -102,7 +102,7 @@ namespace Tizen.Multimedia
 
                 using (RegisterCancellationAction(tcs, cancellationToken, id))
                 {
-                    await tcs.Task;
+                    await tcs.Task.ConfigureAwait(false);
                 }
             }
         }