diff options
-rw-r--r-- | src/Post.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Post.js b/src/Post.js index e6f7d62..f3a5e02 100644 --- a/src/Post.js +++ b/src/Post.js @@ -68,6 +68,10 @@ const Post = ({ index, post, locked, threadId, currentBoard }) => { post.message = post.message.replace(".html#", "/"); } + if (post.tripcode === " (★ ****-****)") { + post.tripcode = ""; + } + return ( <Comment> <Comment.Avatar @@ -95,7 +99,7 @@ const Post = ({ index, post, locked, threadId, currentBoard }) => { name="star" color={user_id === "CAP_USER*" ? "yellow" : "grey"} /> - {user_id} + {user_id === "CAP_USER*" ? "Usuario verificado" : user_id} </div> </Comment.Metadata> <Comment.Text> |