Skip to content

Commit

Permalink
Merge pull request #97 from xibosignage/develop
Browse files Browse the repository at this point in the history
Fix HTTPS move
  • Loading branch information
dasgarner authored Oct 8, 2019
2 parents f32680b + 7b536b3 commit 251e4a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XmdsAgents/RegisterAgent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void Run()
callRegister(xmds, key);

// If that worked (no errors), update our setting
ApplicationSettings.Default.ServerUri = ApplicationSettings.Default.ServerUri.Replace("http", "https");
ApplicationSettings.Default.ServerUri = ApplicationSettings.Default.ServerUri.Replace("http://", "https://");
ApplicationSettings.Default.Save();
}
catch (Exception e)
Expand Down

0 comments on commit 251e4a0

Please sign in to comment.