Skip to content

Commit 32fb387

Browse files
committed
wip
1 parent 13dd3a7 commit 32fb387

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

app/Crawler.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,7 @@ public function sendRequest(RequestInterface $request): ResponseInterface
6363
public function sendRequests(RequestInterface ...$requests): array
6464
{
6565
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);
7167
}
7268

7369
return array_map(

app/OscaroteroEmbedAdapter.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public function updateEmbeds(array $embeds): void
3131
{
3232
$extractors = $this->embedLib->getMulti(...\array_map(static fn (Embed $embed) => $embed->getUrl(), $embeds));
3333
foreach ($extractors as $i => $extractor) {
34+
info(print_r($extractor, true));
3435
if ($extractor->code !== null) {
3536
$embeds[$i]->setEmbedCode($extractor->code->html);
3637
}

0 commit comments

Comments
 (0)