KeyFoundEventArgs constructor fix
KeyFoundEventArgs constructor didn't set value leading to always substituting with an empty string
This commit is contained in:
parent
8135db68df
commit
758f112836
|
@ -14,6 +14,7 @@ namespace Mustache
|
||||||
internal KeyFoundEventArgs(string key, object value)
|
internal KeyFoundEventArgs(string key, object value)
|
||||||
{
|
{
|
||||||
Key = key;
|
Key = key;
|
||||||
|
Substitute = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in New Issue