diff options
| author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-07-28 00:28:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-28 00:28:23 -0400 |
| commit | 507154bf34cbd0db19ead7fe7228e64124e695bb (patch) | |
| tree | 22b41a102bc737fbc19c9a5ef31d2cba5e7efde1 | |
| parent | bdae52c9ae76303fd8082b10763b9ab7660fbd35 (diff) | |
| parent | 97710d6f47ca180540d8b5c203ae6f4ca089fcb8 (diff) | |
| download | SMAPI-507154bf34cbd0db19ead7fe7228e64124e695bb.tar.gz SMAPI-507154bf34cbd0db19ead7fe7228e64124e695bb.tar.bz2 SMAPI-507154bf34cbd0db19ead7fe7228e64124e695bb.zip | |
Merge pull request #792 from bladeoflight16/monofix
Fix build error in MonoDevelop
| -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() |
