trying to fixbug #2
This commit is contained in:
parent
670731eddf
commit
51f2a408d9
1 changed files with 2 additions and 3 deletions
|
@ -67,7 +67,7 @@ if (!$ARGV[0]) {
|
||||||
my @selected_video_data;
|
my @selected_video_data;
|
||||||
while($uuid == -1) {
|
while($uuid == -1) {
|
||||||
$response = search_video(join("",@ARGV), $counter);
|
$response = search_video(join("",@ARGV), $counter);
|
||||||
if($response == -1) {
|
if($response eq "-1") {
|
||||||
print colored['bold red'], "ERROR\n";
|
print colored['bold red'], "ERROR\n";
|
||||||
}
|
}
|
||||||
my $json_obj = $json->decode($response);
|
my $json_obj = $json->decode($response);
|
||||||
|
@ -86,14 +86,13 @@ sub search_video($$) {
|
||||||
if ($response->{_rc} == 200) {
|
if ($response->{_rc} == 200) {
|
||||||
return $response->content;
|
return $response->content;
|
||||||
} else {
|
} else {
|
||||||
return $response->{_rc};
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sub select_video($) {
|
sub select_video($) {
|
||||||
my $json_obj = shift;
|
my $json_obj = shift;
|
||||||
my @videos_data;
|
my @videos_data;
|
||||||
|
|
||||||
my $total = $json_obj->{total};
|
my $total = $json_obj->{total};
|
||||||
$total = 25 if $total > 25;
|
$total = 25 if $total > 25;
|
||||||
print colored['bold'], "Connected to $config{instance}\n";
|
print colored['bold'], "Connected to $config{instance}\n";
|
||||||
|
|
Loading…
Add table
Reference in a new issue