Skip to content

Commit ac6f188

Browse files
committed
Fix ConfigureAwait in network module
1 parent 6ef2886 commit ac6f188

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dotnet/src/webdriver/BiDi/Modules/Network/NetworkModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public async Task RemoveInterceptAsync(Intercept intercept, RemoveInterceptOptio
2626
{
2727
var @params = new RemoveInterceptCommandParameters(intercept);
2828

29-
await Broker.ExecuteCommandAsync(new RemoveInterceptCommand(@params), options).ConfigureAwait(!false);
29+
await Broker.ExecuteCommandAsync(new RemoveInterceptCommand(@params), options).ConfigureAwait(false);
3030
}
3131

3232
internal async Task ContinueRequestAsync(Request request, ContinueRequestOptions? options = null)

0 commit comments

Comments
 (0)