From d1b4062bb36b7deeb201b65aa8cdb6b9c5224d2a Mon Sep 17 00:00:00 2001 From: qorg11 Date: Mon, 8 Nov 2021 11:56:35 +0100 Subject: [PATCH] reset counter to 0 if it is less than 0 (negative numbers give errors) and print the label instace of id (so you get 720p instead of 720) --- peertube-cli.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/peertube-cli.pl b/peertube-cli.pl index 61a6d47..629ec90 100755 --- a/peertube-cli.pl +++ b/peertube-cli.pl @@ -102,6 +102,9 @@ if (!$ARGV[0]) { sub search_video($$$) { my ($instance, $search_string, $counter) = @_; + if($counter < 0) { + $counter = 0; + } my $response = $ua->get("$instance/api/v1/search/videos?search=$search_string&count=25&start=$counter"); if ($response->{_rc} == 200) { return $response->content; @@ -138,6 +141,7 @@ sub select_video($) { return -1; } elsif ($prompt_input =~ /^:s/) { $prompt_input =~ s/^:s //; + $input = $prompt_input; return -1; } elsif ($prompt_input =~ /^:i/) { $config{instance} = $prompt_input; @@ -157,7 +161,7 @@ sub get_video_data($) { $json_obj->{name}, $json_obj->{description}, $json_obj->{account}->{name}, - $json_obj->{files}->[$config{default_resolution}]->{resolution}->{id}); + $json_obj->{files}->[$config{default_resolution}]->{resolution}->{label}); } else { return "error\n"; }