mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add nullable context to SabreTools.IO
This commit is contained in:
@@ -66,7 +66,10 @@ namespace SabreTools.Serialization
|
||||
// Loop through and write out the rows
|
||||
foreach (var row in rows)
|
||||
{
|
||||
var rowArray = new List<string>
|
||||
if (row == null)
|
||||
continue;
|
||||
|
||||
var rowArray = new List<string?>
|
||||
{
|
||||
row.SHA256,
|
||||
row.Name,
|
||||
|
||||
Reference in New Issue
Block a user