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));
 				}