Skip to content

Commit

Permalink
Ignore management exceptions on missing namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmine committed Mar 10, 2021
1 parent e60413e commit 9085aa9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## [3.4.2](https://github.com/ProjectCeleste/Celeste.Launcher/releases/tag/v3.4.2) (2021-03-10)
- Fixed an issue with fingerprint crashing the launcher on some systems

## [3.4.1](https://github.com/ProjectCeleste/Celeste.Launcher/releases/tag/v3.4.1) (2021-02-08)
- Fixed an issue with custom scenario linking not working

Expand Down
4 changes: 4 additions & 0 deletions Libs/Celeste_Public_Api/Helpers/FingerPrint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@ private static string Identifier(string wmiClass, string wmiProperty)

return "";
}
catch (ManagementException)
{
return "";
}
catch (COMException)
{
return "";
Expand Down

0 comments on commit 9085aa9

Please sign in to comment.