diff options
author | bladeoflight16 <1159076+bladeoflight16@users.noreply.github.com> | 2021-07-27 17:17:56 -0400 |
---|---|---|
committer | bladeoflight16 <1159076+bladeoflight16@users.noreply.github.com> | 2021-07-27 17:17:56 -0400 |
commit | 97710d6f47ca180540d8b5c203ae6f4ca089fcb8 (patch) | |
tree | 8ae9597721a2417ee538e26f7078e2b8b57fee0d | |
parent | 175eaad68373185b010410c5e2de1af9afbba1f5 (diff) | |
download | SMAPI-97710d6f47ca180540d8b5c203ae6f4ca089fcb8.tar.gz SMAPI-97710d6f47ca180540d8b5c203ae6f4ca089fcb8.tar.bz2 SMAPI-97710d6f47ca180540d8b5c203ae6f4ca089fcb8.zip |
Fixing mono incompatibility (case exception type statement without variable)
-rw-r--r-- | src/SMAPI/Framework/Logging/LogManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/Logging/LogManager.cs b/src/SMAPI/Framework/Logging/LogManager.cs index a4df3c18..2cd512e0 100644 --- a/src/SMAPI/Framework/Logging/LogManager.cs +++ b/src/SMAPI/Framework/Logging/LogManager.cs @@ -258,7 +258,7 @@ namespace StardewModdingAPI.Framework.Logging break; // path too long exception - case PathTooLongException: + case PathTooLongException _: { string[] affectedPaths = PathUtilities.GetTooLongPaths(Constants.ModsPath).ToArray(); string message = affectedPaths.Any() |