Fix broken build (#10541)

This commit is contained in:
Brennan 2019-05-25 14:47:22 -07:00 committed by GitHub
parent 44b2768307
commit 833ddbe899
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ namespace PlaintextApp
response.ContentType = "text/plain";
response.ContentLength = payload.Length;
return response.BodyPipe.WriteAsync(payload).GetAsTask();
return response.BodyWriter.WriteAsync(payload).GetAsTask();
});
}