[UTIL][Formatting] Mention title is not always defined

This commit is contained in:
Eliseu Amaro 2022-01-13 18:07:19 +00:00
父節點 fa9df9962e
當前提交 eff9318c1d
簽署人: eliseuamaro
GPG 金鑰 ID: 96DA09D4B97BC2D5
共有 1 個檔案被更改,包括 2 行新增2 行删除

查看文件

@ -450,7 +450,7 @@ abstract class Formatting
foreach ($points as $position => $mention) {
$linkText = self::linkifyMentionArray($mention);
$text = substr_replace($text, $linkText, $position-1, $mention['length']+1);
$text = substr_replace($text, $linkText, $position - 1, $mention['length'] + 1);
}
return [$text, $mentions];
@ -471,7 +471,7 @@ abstract class Formatting
}
$output = HTML::html(['span' => ['attrs' => ['class' => 'h-card'],
'@' . HTML::html(['a' => ['attrs' => $attrs, $mention['title']]], options: ['indent' => false]),
'@' . HTML::html(['a' => ['attrs' => $attrs, $mention['title'] ?? $mention['text']]], options: ['indent' => false]),
]], options: ['indent' => false, 'raw' => true]);
Event::handle('EndLinkifyMention', [$mention, &$output]);