Skip Menu |

This queue is for tickets about the VideoLan-Client CPAN distribution.

Report information
The Basics
Id: 65604
Status: resolved
Priority: 0/
Queue: VideoLan-Client

People
Owner: ELLIRYC [...] cpan.org
Requestors: bbischan [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.11
Fixed in: 0.12



Subject: media_stop() sends play command
media_stop() function in Client.pm is coded the same as media_start() sub media_stop { my $self = shift; my $media = shift; $self->cmd('control ' . $media . ' play'); } should be: sub media_stop { my $self = shift; my $media = shift; $self->cmd('control ' . $media . ' stop'); }