Skip to content

Commit

Permalink
Updated The Process cannot access the Loginusers.vdf #401
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacro59 committed Oct 24, 2023
1 parent 988acca commit 5283b4a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CommonPluginsStores/Steam/SteamApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,8 @@ public List<Models.SteamUser> GetSteamUsers()
KeyValue config = new KeyValue();
try
{
config.ReadFileAsText(LoginUsersPath);
Stream sFile = FileSystem.OpenReadFileStreamSafe(LoginUsersPath);
config.ReadAsText(sFile);
foreach (KeyValue user in config.Children)
{
users.Add(new Models.SteamUser()
Expand Down

0 comments on commit 5283b4a

Please sign in to comment.