We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc4dc2e commit b27e95eCopy full SHA for b27e95e
src/Drivers/HttpDriver.php
@@ -34,7 +34,11 @@ public static function resolveHttpBy(Closure $callback): void
34
public function process(Request $request): Fluent|false
35
{
36
return rescue(fn () => new Fluent(
37
- $this->http()->acceptJson()->get($this->url($request->getIp()))->json()
+ $this->http()
38
+ ->throw()
39
+ ->acceptJson()
40
+ ->get($this->url($request->getIp()))
41
+ ->json()
42
), false, false);
43
}
44
0 commit comments