Skip to content

Commit

Permalink
fix missing filesystem
Browse files Browse the repository at this point in the history
  • Loading branch information
taubenangriff committed Jul 5, 2023
1 parent 785ae7c commit bf491dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ModManager/Services/GameFileService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ await Task.Run(() =>
if (isLoading)
return null;

return _fileSystem.OpenRead(path);
return _fileSystem?.OpenRead(path);
}

/// <summary>
Expand Down

0 comments on commit bf491dc

Please sign in to comment.