Cast tags from media to string for cleanUpString() (#4452)

This commit is contained in:
Vaalyn 2021-08-05 22:25:32 +02:00 committed by GitHub
parent 8d0dc45461
commit a5436ee805
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class ReadCommand
$tagValue = implode(', ', $flatValue);
}
$metaTags[$tagName] = $this->cleanUpString($tagValue);
$metaTags[$tagName] = $this->cleanUpString((string)$tagValue);
}
}
}