Skip to content

Commit

Permalink
Fixup bug in GetHeaderValue
Browse files Browse the repository at this point in the history
  • Loading branch information
desplesda committed Dec 19, 2024
1 parent a0e6ea4 commit 89cdf07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion YarnSpinner/Dialogue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ public IEnumerable<string> GetTagsForNode(string nodeName)

foreach (var header in node.Headers)
{
if (header.Key == nodeName)
if (header.Key == headerName)
{
return header.Value.Trim();
}
Expand Down

0 comments on commit 89cdf07

Please sign in to comment.