fix uri uninitialized option (#944)

This commit is contained in:
cgagnaire 2018-04-09 17:49:43 +02:00 committed by Simon Bomm
parent a2874c7672
commit bc7ba62b7b
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ sub get_next {
}
my $url_path = $self->{url_path} . $options{path};
$url_path .= '?' . $options{uri} if (defined($options{args}));
$url_path .= '?' . $options{args} if (defined($options{args}));
$url_path .= '?' . $encoded_tag if (defined($options{nextTag}) && !defined($options{args}));
$url_path .= '&' . $encoded_tag if (defined($options{nextTag}) && defined($options{args}));