Skip to content
This repository has been archived by the owner on Apr 3, 2022. It is now read-only.

Commit

Permalink
Fixed wrong URL in updater
Browse files Browse the repository at this point in the history
Fixed accidental commit of localhost URL in updater (is used to test the updating before releasing)
  • Loading branch information
Stekeblad committed Dec 13, 2020
1 parent c3ee036 commit 538e117
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ private void acceptStatusFeed(String statusText) {
* or if any of the expected keys in the update response is missing.
*/
private UpdateInfo fetchLatestVersionInfo() throws JSONException {
String updateInformation = HttpOperations.getString("http://localhost:56930/latestuploaderversion.json");
String updateInformation = HttpOperations.getString("https://stekeblad.se/latestuploaderversion.json");
UpdateInfo info = null;
if (updateInformation != null) {
JSONObject updateJson = new JSONObject(updateInformation);
Expand Down

0 comments on commit 538e117

Please sign in to comment.