mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-06-28 12:08:09 +03:00
[FIX] Add .json ext to profile files
This commit is contained in:
parent
d2a8bc2c35
commit
230fd22f99
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue