From 75eec20237e4d8545ee97393f7d707c37e8e6432 Mon Sep 17 00:00:00 2001 From: Greg Tseng Date: Mon, 3 Mar 2025 18:38:58 -0500 Subject: [PATCH] updated the url of the server to pull the server_profiles.json from assets --- Saradomin/Infrastructure/Services/RemoteConfigService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Saradomin/Infrastructure/Services/RemoteConfigService.cs b/Saradomin/Infrastructure/Services/RemoteConfigService.cs index 5d73ba1..d04eb30 100644 --- a/Saradomin/Infrastructure/Services/RemoteConfigService.cs +++ b/Saradomin/Infrastructure/Services/RemoteConfigService.cs @@ -11,7 +11,7 @@ namespace Saradomin.Infrastructure.Services public class RemoteConfigService : IRemoteConfigService { private const string ServerProfilesURL = - "https://emoscape.org/server_profiles.json"; + "https://assets.emoscape.org/server_profiles.json"; public ObservableCollection AvailableProfiles { get; private set; } = new();