summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Serialization
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-07-06 19:25:15 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-07-06 19:25:15 -0400
commit9c9552531f8f085cded6ed5158503e75b00be1ff (patch)
treeda1e4474f6d5e4a5738b19a6cc45a9a16b13addd /src/SMAPI/Framework/Serialization
parent4d9fd63d9e890a10029508c7d7e31dcc0b579db7 (diff)
downloadSMAPI-9c9552531f8f085cded6ed5158503e75b00be1ff.tar.gz
SMAPI-9c9552531f8f085cded6ed5158503e75b00be1ff.tar.bz2
SMAPI-9c9552531f8f085cded6ed5158503e75b00be1ff.zip
fix build warnings
Diffstat (limited to 'src/SMAPI/Framework/Serialization')
-rw-r--r--src/SMAPI/Framework/Serialization/KeybindConverter.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/Serialization/KeybindConverter.cs b/src/SMAPI/Framework/Serialization/KeybindConverter.cs
index 539f1291..f7b8e67e 100644
--- a/src/SMAPI/Framework/Serialization/KeybindConverter.cs
+++ b/src/SMAPI/Framework/Serialization/KeybindConverter.cs
@@ -49,7 +49,10 @@ namespace StardewModdingAPI.Framework.Serialization
case JsonToken.String:
{
- string str = JToken.Load(reader).Value<string>();
+ string? str = JToken.Load(reader).Value<string>();
+
+ if (str is null)
+ return new Keybind(Array.Empty<SButton>());
if (objectType == typeof(Keybind))
{