Remove warnings

This commit is contained in:
qorg11 2021-11-07 15:44:30 +01:00
parent 7f3c79c6d8
commit 68c6083370
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -10,7 +10,6 @@ use Term::ReadLine;
use Term::ANSIColor; use Term::ANSIColor;
use Getopt::Long; use Getopt::Long;
use Time::Seconds; use Time::Seconds;
use warnings;
use strict; use strict;
our %config; our %config;
@ -104,7 +103,6 @@ if (!$ARGV[0]) {
sub search_video($$$) { sub search_video($$$) {
my ($instance, $search_string, $counter) = @_; my ($instance, $search_string, $counter) = @_;
print $instance . "\n";
my $response = $ua->get("$instance/api/v1/search/videos?search=$search_string&count=25&start=$counter"); my $response = $ua->get("$instance/api/v1/search/videos?search=$search_string&count=25&start=$counter");
if ($response->{_rc} == 200) { if ($response->{_rc} == 200) {
return $response->content; return $response->content;