diff --git a/common/src/main/kotlin/dev/msfjarvis/claw/common/comments/CommentEntry.kt b/common/src/main/kotlin/dev/msfjarvis/claw/common/comments/CommentEntry.kt index 56d12096..feb943fb 100644 --- a/common/src/main/kotlin/dev/msfjarvis/claw/common/comments/CommentEntry.kt +++ b/common/src/main/kotlin/dev/msfjarvis/claw/common/comments/CommentEntry.kt @@ -202,16 +202,14 @@ fun buildCommenterString( append(' ') append('•') append(' ') + append(createdRelative.toString()) if (updatedRelative != createdRelative) { - append(createdRelative.toString()) append(' ') append('(') append("Updated") append(' ') append(updatedRelative.toString()) append(')') - } else { - append(createdRelative.toString()) } } }