Changed leftover "getBody" to "getBodyString"

This commit is contained in:
Michael 2024-01-22 07:38:05 +00:00
parent 75b37fe376
commit ad6976a407
1 changed files with 2 additions and 2 deletions

View File

@ -2207,7 +2207,7 @@ class GServer
*/
private static function analyseRootBody($curlResult, array $serverdata): array
{
if (empty($curlResult->getBody())) {
if (empty($curlResult->getBodyString())) {
return $serverdata;
}
@ -2220,7 +2220,7 @@ class GServer
$platforms = array_merge($ap_platforms, $dfrn_platforms, $zap_platforms, $platforms);
$doc = new DOMDocument();
@$doc->loadHTML($curlResult->getBody());
@$doc->loadHTML($curlResult->getBodyString());
$xpath = new DOMXPath($doc);
$assigned = false;