We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8beb74d commit 2d41f7fCopy full SHA for 2d41f7f
config/api.php
@@ -1,6 +1,5 @@
1
<?php
2
3
-
4
return [
5
6
/*
src/Dispatcher.php
@@ -542,7 +542,9 @@ protected function dispatch(InternalRequest $request)
542
543
if (! $response->isSuccessful() && ! $response->isRedirection()) {
544
throw new InternalHttpException($response);
545
- } elseif (! $this->raw) {
+ }
546
+
547
+ if (! $this->raw) {
548
$response = $response->getOriginalContent();
549
}
550
} catch (HttpExceptionInterface $exception) {
0 commit comments