diff --git a/Flow.Launcher.Infrastructure/Http/Http.cs b/Flow.Launcher.Infrastructure/Http/Http.cs index c4c8eb5b1..9f4146b7b 100644 --- a/Flow.Launcher.Infrastructure/Http/Http.cs +++ b/Flow.Launcher.Infrastructure/Http/Http.cs @@ -159,7 +159,7 @@ namespace Flow.Launcher.Infrastructure.Http /// public static async Task SendAsync(HttpRequestMessage request, CancellationToken token = default) { - return await client.SendAsync(request, token); + return await client.SendAsync(request, HttpCompletionOption.ResponseHeadersRead, token); } } }