Skip to content

Commit

Permalink
Merge pull request #94 from Memsworth/stable
Browse files Browse the repository at this point in the history
Change to check if UnidentifiedData's Origin is Ini
  • Loading branch information
TheBoxyBear authored Oct 28, 2024
2 parents ea9aaa8 + 5aabd2f commit f4e02cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ChartTools/IO/Ini/IniSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public override IEnumerable<string> Serialize()
foreach ((var key, var value) in props)
yield return IniFormatting.Line(key, value.ToString());

foreach (var data in Content.UnidentifiedData)
foreach (var data in Content.UnidentifiedData.Where(x => x.Origin is FileType.Ini))
yield return IniFormatting.Line(data.Key, data.Value);

if (Content.AlbumTrack is not null)
Expand Down

0 comments on commit f4e02cf

Please sign in to comment.