diff options
Diffstat (limited to 'src/remote/activitypub/models')
| -rw-r--r-- | src/remote/activitypub/models/note.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote/activitypub/models/note.ts b/src/remote/activitypub/models/note.ts index 9e40bb8d61..fe7911ae06 100644 --- a/src/remote/activitypub/models/note.ts +++ b/src/remote/activitypub/models/note.ts @@ -64,7 +64,7 @@ function parse(tag, html: string): string { break; case 'p': - text += '\n'; + text += '\n\n'; if (node.childNodes) { node.childNodes.forEach(n => analyze(n)); } |