diff --git a/Aaru.Core/Remote.cs b/Aaru.Core/Remote.cs index 9f505bcec..fc07b6ab0 100644 --- a/Aaru.Core/Remote.cs +++ b/Aaru.Core/Remote.cs @@ -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}");