Skip to content

Commit

Permalink
Fixed delayed download progress display in Web PVR Manager
Browse files Browse the repository at this point in the history
STDERR needs to be unbuffered so that the download progress display
isn't delayed for HLS streams.

Closes #270
  • Loading branch information
dinkypumpkin committed Jul 30, 2016
1 parent 9986f11 commit 782f04a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion get_iplayer
Expand Up @@ -76,7 +76,8 @@ use constant FB_EMPTY => sub { '' };
my %SIGORIG;
# Save default SIG actions
$SIGORIG{$_} = $SIG{$_} for keys %SIG;
$|=1;
STDOUT->autoflush(1);
STDERR->autoflush(1);
# Save proxy env var
my $ENV_HTTP_PROXY = $ENV{HTTP_PROXY} || $ENV{http_proxy};

Expand Down

0 comments on commit 782f04a

Please sign in to comment.