api url change (#349)

- Changed stats api url to https
- Removed paypal from readme. People can now only donate through opencollective.
This commit is contained in:
Robbie Davis 2021-06-30 16:31:57 -04:00 committed by GitHub
parent 3231b60abd
commit 20ba41c38f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

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 = "http://stats.kavitareader.com";
private const string ApiUrl = "https://stats.kavitareader.com";
public StatsApiClient(HttpClient client, IOptions<StatsOptions> options, ILogger<StatsApiClient> logger)
{