aboutsummaryrefslogtreecommitdiff
path: root/ServiceStack/HttpResult.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-12 02:45:06 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-12 02:45:06 -0500
commit6865bb53530abbf703b590dd39cfa27274b03107 (patch)
tree8be5b428ea0a5200937ffea978f62b29c40e726b /ServiceStack/HttpResult.cs
parenta855864207fe3ed0ac9b4d648617bb1cb39df3f3 (diff)
update responses
Diffstat (limited to 'ServiceStack/HttpResult.cs')
-rw-r--r--ServiceStack/HttpResult.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ServiceStack/HttpResult.cs b/ServiceStack/HttpResult.cs
index e25002b3e..3f86ffdf7 100644
--- a/ServiceStack/HttpResult.cs
+++ b/ServiceStack/HttpResult.cs
@@ -55,7 +55,7 @@ namespace ServiceStack
return;
}
- ContentTypes.Instance.SerializeToStream(this.RequestContext, this.Response, responseStream);
+ await HttpResponseExtensionsInternal.WriteObject(this.RequestContext, this.Response, response).ConfigureAwait(false);
}
}
}