From 5e2a7f451f2916c774b439fec26f5cbd2b285029 Mon Sep 17 00:00:00 2001 From: Anthony van der Hoorn Date: Tue, 12 Nov 2013 17:03:59 +0000 Subject: [PATCH] Fix #629 - Fixed missing data return in boundedlist processing --- source/Glimpse.WebForms/Support/ViewStateFormatter.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/Glimpse.WebForms/Support/ViewStateFormatter.cs b/source/Glimpse.WebForms/Support/ViewStateFormatter.cs index e034d7936..2e64c4678 100644 --- a/source/Glimpse.WebForms/Support/ViewStateFormatter.cs +++ b/source/Glimpse.WebForms/Support/ViewStateFormatter.cs @@ -221,6 +221,8 @@ private object ProcessData(Type rootType, string type, object data) { temp.Add(ProcessData(rootType, "System.Web.UI.WebControls.ListItem", new TempListItem { Index = indexList[i], Data = valueList[i] })); } + + result = temp; } else {