fix uri uninitialized option (#944)
This commit is contained in:
parent
a2874c7672
commit
bc7ba62b7b
|
@ -163,7 +163,7 @@ sub get_next {
|
||||||
}
|
}
|
||||||
|
|
||||||
my $url_path = $self->{url_path} . $options{path};
|
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}));
|
||||||
$url_path .= '&' . $encoded_tag if (defined($options{nextTag}) && defined($options{args}));
|
$url_path .= '&' . $encoded_tag if (defined($options{nextTag}) && defined($options{args}));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue