Skip to content

Commit

Permalink
Don't show checkmark for /me messages
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Apr 10, 2019
1 parent bef0945 commit 37cfa36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/message.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
{[ if (o.is_encrypted) { ]}<span class="fa fa-lock"></span>{[ } ]}
</span>
{[ if (!o.is_me_message) { ]}<div class="chat-msg__body">{[ } ]}
{[ if (o.received) { ]} <span class="fa fa-check chat-msg__receipt"></span> {[ } ]}
{[ if (o.received && !o.is_me_message) { ]} <span class="fa fa-check chat-msg__receipt"></span> {[ } ]}
{[ if (o.edited) { ]} <i title="{{{o.__('This message has been edited')}}}" class="fa fa-edit chat-msg__edit-modal"></i> {[ } ]}
{[ if (!o.is_me_message) { ]}<div class="chat-msg__message">{[ } ]}
{[ if (o.is_spoiler) { ]}
Expand Down

0 comments on commit 37cfa36

Please sign in to comment.