@social-mail/social-mail-client 1.8.274 → 1.8.275
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/public/channel/ChannelApp.pack.js +1 -1
- package/dist/public/channel/ChannelApp.pack.js.map +1 -1
- package/dist/public/channel/ChannelApp.pack.min.js +1 -1
- package/dist/public/channel/ChannelApp.pack.min.js.map +1 -1
- package/dist/public/channel/pages/posts/ChannelPage.js +1 -1
- package/dist/public/channel/pages/posts/ChannelPage.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/public/channel/pages/posts/ChannelPage.tsx +1 -1
package/package.json
CHANGED
|
@@ -185,7 +185,7 @@ export default class ChannelPage extends ContentPage {
|
|
|
185
185
|
reactAction(email: IEmail, emoji) {
|
|
186
186
|
const { headerMessageID } = email;
|
|
187
187
|
const { channel: { emailAddress: { emailAddress }} } = this;
|
|
188
|
-
const subject = `${emoji}
|
|
188
|
+
const subject = `${emoji}-k${BigInt(email.emailID).toString(36)}-${headerMessageID}`;
|
|
189
189
|
const link = Mailto.create({ to: emailAddress, subject, body: emoji, inReplyTo: headerMessageID });
|
|
190
190
|
// const link = `mailto:${channel.emailAddress.emailAddress}?subject=${subject}&body=${emoji}&in-reply-to=${headerMessageID}`;
|
|
191
191
|
this.element.dispatchEvent(new CustomEvent("shareLink", {
|