We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e826ab6 commit 2245c0aCopy full SHA for 2245c0a
src/Files.App/Services/Windows/WindowsIniService.cs
@@ -20,7 +20,7 @@ public List<IniSectionDataItem> GetData(string filePath)
20
.Where(line => !line.StartsWith(';') && !string.IsNullOrEmpty(line))
21
.ToList();
22
}
23
- catch (Exception ex) when (ex is UnauthorizedAccessException || ex is SystemIO.FileNotFoundException)
+ catch (Exception ex) when (ex is UnauthorizedAccessException || ex is SystemIO.FileNotFoundException || ex is SystemIO.IOException)
24
{
25
return [];
26
0 commit comments