File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -63,11 +63,7 @@ public function sendRequest(RequestInterface $request): ResponseInterface
63
63
public function sendRequests (RequestInterface ...$ requests ): array
64
64
{
65
65
if ($ this ->client instanceof CurlClient) {
66
- $ response = $ this ->client ->sendRequests (...$ requests );
67
-
68
- logger (print_r ($ response , true ));
69
-
70
- return $ response ;
66
+ return $ this ->client ->sendRequests (...$ requests );
71
67
}
72
68
73
69
return array_map (
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ public function updateEmbeds(array $embeds): void
31
31
{
32
32
$ extractors = $ this ->embedLib ->getMulti (...\array_map (static fn (Embed $ embed ) => $ embed ->getUrl (), $ embeds ));
33
33
foreach ($ extractors as $ i => $ extractor ) {
34
+ info (print_r ($ extractor , true ));
34
35
if ($ extractor ->code !== null ) {
35
36
$ embeds [$ i ]->setEmbedCode ($ extractor ->code ->html );
36
37
}
You can’t perform that action at this time.
0 commit comments