Skip to content

Commit

Permalink
Make aaru.app base uri for remote
Browse files Browse the repository at this point in the history
  • Loading branch information
FakeShemp authored and claunia committed Jan 11, 2025
1 parent 7dcb22b commit 56a81aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Aaru.Core/Remote.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ await mctx.Database

var httpClient = new HttpClient();
httpClient.DefaultRequestHeaders.Add("User-Agent", $"Aaru {typeof(Version).Assembly.GetName().Version}");
httpClient.BaseAddress = new Uri("http://localhost:5279");
httpClient.BaseAddress = new Uri("https://www.aaru.app");

HttpResponseMessage response = await httpClient.GetAsync($"/api/update?timestamp={lastUpdate}");

Expand Down

0 comments on commit 56a81aa

Please sign in to comment.