Rollback https stats server due to issues with self signed cert.

This commit is contained in:
Joseph Milazzo 2021-06-30 16:34:22 -05:00
parent f7f983045d
commit adcee4f15e

View File

@ -16,7 +16,7 @@ namespace API.Services.Clients
private readonly HttpClient _client;
private readonly StatsOptions _options;
private readonly ILogger<StatsApiClient> _logger;
private const string ApiUrl = "https://stats.kavitareader.com";
private const string ApiUrl = "http://stats.kavitareader.com";
public StatsApiClient(HttpClient client, IOptions<StatsOptions> options, ILogger<StatsApiClient> logger)
{