mirror of
https://github.com/bitwarden/server.git
synced 2025-07-07 10:55:43 -05:00
decompress gzipped icons
This commit is contained in:
@ -15,7 +15,8 @@ namespace Bit.Icons.Controllers
|
|||||||
{
|
{
|
||||||
private static readonly HttpClient _httpClient = new HttpClient(new HttpClientHandler
|
private static readonly HttpClient _httpClient = new HttpClient(new HttpClientHandler
|
||||||
{
|
{
|
||||||
AllowAutoRedirect = false
|
AllowAutoRedirect = false,
|
||||||
|
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
|
||||||
});
|
});
|
||||||
private readonly IMemoryCache _memoryCache;
|
private readonly IMemoryCache _memoryCache;
|
||||||
private readonly IDomainMappingService _domainMappingService;
|
private readonly IDomainMappingService _domainMappingService;
|
||||||
|
Reference in New Issue
Block a user