зеркало из https://github.com/mozilla/gecko-dev.git
Return the HTTP headers as well in an array context.
This commit is contained in:
Родитель
306d1d615f
Коммит
8ee8ff9e8b
|
@ -57,9 +57,11 @@ sub get {
|
|||
my($app, $uri) = @_;
|
||||
my $request = HTTP::Request->new('GET', $uri);
|
||||
my $response = $self->ua->request($request);
|
||||
# XXX no error handling
|
||||
# XXX headers are not returned
|
||||
return $response->content;
|
||||
if (wantarray) {
|
||||
return ($response->content, $response);
|
||||
} else {
|
||||
return $response->content;
|
||||
}
|
||||
}
|
||||
|
||||
sub unescapeHTML {
|
||||
|
|
Загрузка…
Ссылка в новой задаче