summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-07-28 00:28:23 -0400
committerGitHub <noreply@github.com>2021-07-28 00:28:23 -0400
commit507154bf34cbd0db19ead7fe7228e64124e695bb (patch)
tree22b41a102bc737fbc19c9a5ef31d2cba5e7efde1 /src
parentbdae52c9ae76303fd8082b10763b9ab7660fbd35 (diff)
parent97710d6f47ca180540d8b5c203ae6f4ca089fcb8 (diff)
downloadSMAPI-507154bf34cbd0db19ead7fe7228e64124e695bb.tar.gz
SMAPI-507154bf34cbd0db19ead7fe7228e64124e695bb.tar.bz2
SMAPI-507154bf34cbd0db19ead7fe7228e64124e695bb.zip
Merge pull request #792 from bladeoflight16/monofix
Fix build error in MonoDevelop
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI/Framework/Logging/LogManager.cs2
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()