forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
825fdb2475
commit
5bcce97ff0
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ export default async function renderNote(note: INote, dive = true): Promise<any>
|
||||||
}
|
}
|
||||||
|
|
||||||
// 省略されたメンションのホストを復元する
|
// 省略されたメンションのホストを復元する
|
||||||
if (text != null) {
|
if (text != null && text != '') {
|
||||||
text = parseMfm(text).map(x => {
|
text = parseMfm(text).map(x => {
|
||||||
if (x.type == 'mention' && x.host == null) {
|
if (x.type == 'mention' && x.host == null) {
|
||||||
return `${x.content}@${config.host}`;
|
return `${x.content}@${config.host}`;
|
||||||
|
|
Loading…
Reference in a new issue