Avoid problems with "null" values

This commit is contained in:
Michael 2021-07-11 11:11:03 +00:00
parent 4955670e15
commit 7390791d21
1 changed files with 2 additions and 2 deletions

View File

@ -1287,11 +1287,11 @@ class BBCode
* @return string
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public static function convertForUriId(int $uriid = 0, string $text = null, int $simple_html = self::INTERNAL)
public static function convertForUriId($uriid, string $text = null, int $simple_html = self::INTERNAL)
{
$try_oembed = ($simple_html == self::INTERNAL);
return self::convert($text, $try_oembed, $simple_html, false, $uriid);
return self::convert($text, $try_oembed, $simple_html, false, $uriid ?? 0);
}
/**