fix getH1 response

This commit is contained in:
ghost 2024-02-02 12:58:43 +02:00
parent d80dfce235
commit 79fd257589

View File

@ -251,7 +251,7 @@ class Reader
{ {
foreach ((array) explode(PHP_EOL, $gemini) as $line) foreach ((array) explode(PHP_EOL, $gemini) as $line)
{ {
preg_match_all( preg_match(
$regex, $regex,
$line, $line,
$matches $matches
@ -266,6 +266,8 @@ class Reader
break; break;
} }
} }
return null;
} }
public function getLinks(string $gemini, ?string $regex = '/(https?|gemini):\/\/\S+/'): array public function getLinks(string $gemini, ?string $regex = '/(https?|gemini):\/\/\S+/'): array