From 758f11283653c756b1eaded97289df1d875eeabb Mon Sep 17 00:00:00 2001 From: Zbynek Zavadil Date: Mon, 14 Jul 2014 21:14:55 +0200 Subject: [PATCH] KeyFoundEventArgs constructor fix KeyFoundEventArgs constructor didn't set value leading to always substituting with an empty string --- mustache-sharp/KeyFoundEventArgs.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/mustache-sharp/KeyFoundEventArgs.cs b/mustache-sharp/KeyFoundEventArgs.cs index 7a97e61..c4bf91d 100644 --- a/mustache-sharp/KeyFoundEventArgs.cs +++ b/mustache-sharp/KeyFoundEventArgs.cs @@ -14,6 +14,7 @@ namespace Mustache internal KeyFoundEventArgs(string key, object value) { Key = key; + Substitute = value; } ///