IDE/Instances: Use a "USERNAME" environment variable in Windows instead of "USER"

This commit is contained in:
n7800 2025-03-13 00:00:32 +05:00
parent c4f158abb8
commit b2229d4e82

View File

@ -189,7 +189,7 @@ begin
if FServerPrefix = '' then
begin
// Calculate the user specific instance prefix only once.
FServerPrefix := GetEnvironmentVariable('USER'); // current user
FServerPrefix := GetEnvironmentVariable({$IFDEF MSWINDOWS}'USERNAME'{$ELSE}'USER'{$ENDIF});
// encode to cover illegal chars ('-' etc)
FServerPrefix := IntToStr( crc32(0, pbyte(FServerPrefix), Length(FServerPrefix)) )
+ '_LazarusMain';