Handle issue with old .NET

This commit is contained in:
Matt Nadareski
2024-12-04 21:27:49 -05:00
parent e7baa7d33f
commit 8c0bbfbf10
2 changed files with 2 additions and 1 deletions

View File

@@ -29,6 +29,7 @@
- Add flag for value being set
- Add unused inputs to Aaru
- Add self-formatting to Input types
- Handle issue with old .NET
### 3.2.4 (2024-11-24)

View File

@@ -50,7 +50,7 @@ namespace MPF.ExecutionContexts.Data
builder.Append(" ");
// Value
builder.Append(Value.ToString().ToLowerInvariant());
builder.Append(Value.ToString()?.ToLowerInvariant());
return builder.ToString();
}