diff --git a/components/comment.js b/components/comment.js
index e7b64e8f..3c90f814 100644
--- a/components/comment.js
+++ b/components/comment.js
@@ -131,6 +131,10 @@ export default function Comment ({
const bottomedOut = depth === COMMENT_DEPTH_LIMIT
// Don't show OP badge when anon user comments on anon user posts
const op = root.user.name === item.user.name && Number(item.user.id) !== ANON_USER_ID
+ ? 'OP'
+ : root.forwards.some(f => f.user.name === item.user.name) && Number(item.user.id) !== ANON_USER_ID
+ ? 'OPG'
+ : null
const bountyPaid = root.bountyPaidTo?.includes(Number(item.id))
return (
@@ -151,7 +155,7 @@ export default function Comment ({
commentsText='replies'
commentTextSingular='reply'
className={`${itemStyles.other} ${styles.other}`}
- embellishUser={op && <> OP>}
+ embellishUser={op && <> {op}>}
extraInfo={
<>
{includeParent && }