Skip to content

Commit

Permalink
use ssl api server connection
Browse files Browse the repository at this point in the history
  • Loading branch information
ckrause committed Jan 31, 2025
1 parent efc1239 commit a8434fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ To install or update LODA, please follow the [installation instructions](https:/

## [Unreleased]

## v25.1.31

### Enhancements

* Use SSL connection to API server

## v25.1.8

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion src/mine/api_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ApiClient::ApiClient()
printed_throttling_warning(false) {
auto server = Setup::getSetupValue("LODA_API_SERVER");
if (server.empty()) {
server = "http://api.loda-lang.org/";
server = "https://api.loda-lang.org/";
} else {
Log::get().info("Using configured API server: " + server);
}
Expand Down

0 comments on commit a8434fa

Please sign in to comment.