Make aaru.app base uri for remote

This commit is contained in:
Rebecca Wallander
2025-01-11 21:20:50 +01:00
committed by Natalia Portillo
parent 7dcb22ba94
commit 56a81aaf10

View File

@@ -173,7 +173,7 @@ public static class Remote
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}");