From 51f2a408d9ba61f42cff2d1a2a5bc7d20b9b5117 Mon Sep 17 00:00:00 2001 From: qorg11 Date: Wed, 3 Nov 2021 16:59:39 +0100 Subject: [PATCH] trying to fixbug #2 --- peertube-cli.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/peertube-cli.pl b/peertube-cli.pl index e114b0e..ffbe7a7 100755 --- a/peertube-cli.pl +++ b/peertube-cli.pl @@ -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";