dispose content stream with StaticRemoteStreamWriter
This commit is contained in:
parent
792e4c4f1b
commit
a5b4ae8b39
|
@ -40,7 +40,10 @@ namespace MediaBrowser.Api.Playback
|
|||
/// <param name="responseStream">The response stream.</param>
|
||||
public void WriteTo(Stream responseStream)
|
||||
{
|
||||
_response.Content.CopyTo(responseStream, 819200);
|
||||
using (_response)
|
||||
{
|
||||
_response.Content.CopyTo(responseStream, 819200);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user