Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit cc9f341

Browse files
author
Steven Kirk
committed
Use ConfigureAwait(false)
1 parent 2872ed8 commit cc9f341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.App/Services/OAuthCallbackListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public async Task<string> Listen(string id, CancellationToken cancel)
5050
{
5151
while (true)
5252
{
53-
var context = await httpListener.GetContextAsync();
53+
var context = await httpListener.GetContextAsync().ConfigureAwait(false);
5454
var foo = context.Request;
5555
var queryParts = HttpUtility.ParseQueryString(context.Request.Url.Query);
5656

0 commit comments

Comments
 (0)