From 230fd22f998a9e0981a2f4266990a6be7560f156 Mon Sep 17 00:00:00 2001 From: Gravita <12893402+gravit0@users.noreply.github.com> Date: Sat, 21 Jun 2025 17:52:31 +0700 Subject: [PATCH] [FIX] Add .json ext to profile files --- .../launchserver/auth/profiles/LocalProfilesProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LaunchServer/src/main/java/pro/gravit/launchserver/auth/profiles/LocalProfilesProvider.java b/LaunchServer/src/main/java/pro/gravit/launchserver/auth/profiles/LocalProfilesProvider.java index 228de8c0..311c4453 100644 --- a/LaunchServer/src/main/java/pro/gravit/launchserver/auth/profiles/LocalProfilesProvider.java +++ b/LaunchServer/src/main/java/pro/gravit/launchserver/auth/profiles/LocalProfilesProvider.java @@ -348,7 +348,7 @@ public LocalProfile(ClientProfile profile, HashedDir clientDir, HashedDir assetD this.profile = profile; this.clientDir = clientDir; this.assetDir = assetDir; - this.configPath = Path.of(profilesDir).resolve(profile.getDir()); + this.configPath = Path.of(profilesDir).resolve(profile.getDir().concat(".json")); } public LocalProfile(ClientProfile profile, HashedDir clientDir, HashedDir assetDir, Path configPath) {