summaryrefslogtreecommitdiff
path: root/dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs')
-rw-r--r--dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs b/dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs
index baed00b03a..d77f3761a8 100644
--- a/dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs
+++ b/dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs
@@ -250,8 +250,7 @@ namespace ExcelAddIn
byte[] body = new byte[m.Body.Length - m.Body.Position];
reader.Read(body, 0, body.Length);
ASCIIEncoding enc = new ASCIIEncoding();
- res = enc.GetString(body);
- res = res + " price: " + m.ApplicationHeaders["price"];
+ res = enc.GetString(body);
return res;
}