Browse Source

Merge pull request #281 from QuickMythril/bugfix-55yr-edit

Fix 55 years ago edit time
pull/282/head
AlphaX-Projects 6 months ago committed by GitHub
parent
commit
d273e9d6b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      plugins/plugins/core/components/ChatScroller.js

2
plugins/plugins/core/components/ChatScroller.js

@ -1392,7 +1392,7 @@ class MessageTemplate extends LitElement {
edited = html`
<span class="edited-message-style">
${translate('chatpage.cchange68')} <message-time timestamp=${this.messageObj.editedTimestamp}></message-time>
${translate('chatpage.cchange68')} <message-time timestamp=${(this.messageObj.editedTimestamp === undefined ? Date.now() : this.messageObj.editedTimestamp)}></message-time>
</span>
`;

Loading…
Cancel
Save