Skip to content

Commit

Permalink
Ignore a first-chance exception in Squirrel
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillOsenkov committed Sep 2, 2024
1 parent 5593f41 commit 61c6ca1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/StructuredLogViewer/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,13 @@ private bool ShouldIgnore(Exception exception)
return true;
}
}
else if (exception is FileNotFoundException)
{
if (toString.Contains(".betaId"))
{
return true;
}
}

return false;
}
Expand Down

0 comments on commit 61c6ca1

Please sign in to comment.