trying to fixbug #2

This commit is contained in:
qorg11 2021-11-03 16:59:39 +01:00
parent 670731eddf
commit 51f2a408d9
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -67,7 +67,7 @@ if (!$ARGV[0]) {
my @selected_video_data;
while($uuid == -1) {
$response = search_video(join("",@ARGV), $counter);
if($response == -1) {
if($response eq "-1") {
print colored['bold red'], "ERROR\n";
}
my $json_obj = $json->decode($response);
@ -86,14 +86,13 @@ sub search_video($$) {
if ($response->{_rc} == 200) {
return $response->content;
} else {
return $response->{_rc};
return -1;
}
}
sub select_video($) {
my $json_obj = shift;
my @videos_data;
my $total = $json_obj->{total};
$total = 25 if $total > 25;
print colored['bold'], "Connected to $config{instance}\n";