Skip to content

Commit

Permalink
Treat IOException as corrupt UEFS cache as well (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
hach-que authored Nov 12, 2024
1 parent 5d83914 commit 4fe5c17
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions UET/Redpoint.Uet.Workspace/VirtualWorkspaceProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,10 @@ private async Task<IWorkspace> AllocateUefsPackageAsync(UefsPackageWorkspaceDesc
{
mountIsValid = false;
}
catch (IOException)
{
mountIsValid = false;
}

if (mountIsValid)
{
Expand Down

0 comments on commit 4fe5c17

Please sign in to comment.