diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-07-06 19:25:15 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-07-06 19:25:15 -0400 |
commit | 9c9552531f8f085cded6ed5158503e75b00be1ff (patch) | |
tree | da1e4474f6d5e4a5738b19a6cc45a9a16b13addd /src/SMAPI/Framework/Serialization | |
parent | 4d9fd63d9e890a10029508c7d7e31dcc0b579db7 (diff) | |
download | SMAPI-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.cs | 5 |
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)) { |