Skip to content

Commit

Permalink
Fixed ffmpeg extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePulverenti Luke Pulverenti luke pulverenti authored and LukePulverenti Luke Pulverenti luke pulverenti committed Aug 25, 2012
1 parent 622a327 commit fe82111
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MediaBrowser.Controller/Kernel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ private void ExtractFFMpeg()
/// Run these during Init.
/// Can't run do this on-demand because there will be multiple workers accessing them at once and we'd have to lock them
/// </summary>
private async void ExtractFFMpeg(string exe)
private void ExtractFFMpeg(string exe)
{
if (File.Exists(exe))
{
Expand All @@ -281,7 +281,7 @@ private async void ExtractFFMpeg(string exe)
{
using (FileStream fileStream = new FileStream(exe, FileMode.Create))
{
await stream.CopyToAsync(fileStream).ConfigureAwait(false);
stream.CopyTo(fileStream);
}
}
}
Expand Down

0 comments on commit fe82111

Please sign in to comment.