mirror of
https://github.com/art-ist/mustache-sharp.git
synced 2024-06-16 21:05:32 +00:00
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…
x
Reference in New Issue
Block a user