mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
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>
|
/// <param name="responseStream">The response stream.</param>
|
||||||
public void WriteTo(Stream responseStream)
|
public void WriteTo(Stream responseStream)
|
||||||
{
|
{
|
||||||
_response.Content.CopyTo(responseStream, 819200);
|
using (_response)
|
||||||
|
{
|
||||||
|
_response.Content.CopyTo(responseStream, 819200);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user