Move reply previews to one line, fix android small text
This commit is contained in:
parent
5e4d539807
commit
283cf66906
2 changed files with 40 additions and 40 deletions
|
@ -541,7 +541,7 @@ async function eventToMessage(event, guild, di) {
|
||||||
.replace(/<span [^>]*data-mx-spoiler\b[^>]*>.*?<\/span>/g, "[spoiler]") // Good enough method of removing spoiler content. (I don't want to break out the HTML parser unless I have to.)
|
.replace(/<span [^>]*data-mx-spoiler\b[^>]*>.*?<\/span>/g, "[spoiler]") // Good enough method of removing spoiler content. (I don't want to break out the HTML parser unless I have to.)
|
||||||
.replace(/<[^>]+>/g, "") // Completely strip all HTML tags and formatting.
|
.replace(/<[^>]+>/g, "") // Completely strip all HTML tags and formatting.
|
||||||
), 50)
|
), 50)
|
||||||
replyLine = "> -# " + contentPreviewChunks[0]
|
replyLine = "-# > " + contentPreviewChunks[0]
|
||||||
if (contentPreviewChunks.length > 1) replyLine = replyLine.replace(/[,.']$/, "") + "..."
|
if (contentPreviewChunks.length > 1) replyLine = replyLine.replace(/[,.']$/, "") + "..."
|
||||||
replyLine += "\n"
|
replyLine += "\n"
|
||||||
return
|
return
|
||||||
|
@ -565,7 +565,7 @@ async function eventToMessage(event, guild, di) {
|
||||||
assert(match)
|
assert(match)
|
||||||
senderName = match[1]
|
senderName = match[1]
|
||||||
}
|
}
|
||||||
replyLine += `Ⓜ️**${senderName}**`
|
replyLine += `**Ⓜ${senderName}**`
|
||||||
}
|
}
|
||||||
// If the event has been edited, the homeserver will include the relation in `unsigned`.
|
// If the event has been edited, the homeserver will include the relation in `unsigned`.
|
||||||
if (repliedToEvent.unsigned?.["m.relations"]?.["m.replace"]?.content?.["m.new_content"]) {
|
if (repliedToEvent.unsigned?.["m.relations"]?.["m.replace"]?.content?.["m.new_content"]) {
|
||||||
|
@ -595,14 +595,14 @@ async function eventToMessage(event, guild, di) {
|
||||||
repliedToContent = entities.decodeHTML5Strict(repliedToContent) // Remove entities like & "
|
repliedToContent = entities.decodeHTML5Strict(repliedToContent) // Remove entities like & "
|
||||||
const contentPreviewChunks = chunk(repliedToContent, 50)
|
const contentPreviewChunks = chunk(repliedToContent, 50)
|
||||||
if (contentPreviewChunks.length) {
|
if (contentPreviewChunks.length) {
|
||||||
contentPreview = ":\n> -# " + contentPreviewChunks[0]
|
contentPreview = ": " + contentPreviewChunks[0]
|
||||||
if (contentPreviewChunks.length > 1) contentPreview = contentPreview.replace(/[,.']$/, "") + "..."
|
if (contentPreviewChunks.length > 1) contentPreview = contentPreview.replace(/[,.']$/, "") + "..."
|
||||||
} else {
|
} else {
|
||||||
console.log("Unable to generate reply preview for this replied-to event because we stripped all of it:", repliedToEvent)
|
console.log("Unable to generate reply preview for this replied-to event because we stripped all of it:", repliedToEvent)
|
||||||
contentPreview = ""
|
contentPreview = ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
replyLine = `> -# ${replyLine}${contentPreview}\n`
|
replyLine = `-# > ${replyLine}${contentPreview}\n`
|
||||||
})()
|
})()
|
||||||
|
|
||||||
if (event.content.format === "org.matrix.custom.html" && event.content.formatted_body) {
|
if (event.content.format === "org.matrix.custom.html" && event.content.formatted_body) {
|
||||||
|
|
|
@ -1038,8 +1038,8 @@ test("event2message: rich reply to a sim user", async t => {
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 <@111604486476181504>:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 <@111604486476181504>:"
|
||||||
+ "\n> -# Slow news day."
|
+ " Slow news day."
|
||||||
+ "\nTesting this reply, ignore",
|
+ "\nTesting this reply, ignore",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1110,8 +1110,8 @@ test("event2message: rich reply to a rich reply to a multi-line message should c
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>Ⓜ️**cadence [they]**:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>**Ⓜcadence [they]**:"
|
||||||
+ "\n> -# I just checked in a fix that will probably work..."
|
+ " I just checked in a fix that will probably work..."
|
||||||
+ "\nwill try later (tomorrow if I don't forgor)",
|
+ "\nwill try later (tomorrow if I don't forgor)",
|
||||||
avatar_url: undefined,
|
avatar_url: undefined,
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1190,8 +1190,8 @@ test("event2message: rich reply to an already-edited message will quote the new
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647><@111604486476181504>:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647><@111604486476181504>:"
|
||||||
+ "\n> -# this is the new content. heya!"
|
+ " this is the new content. heya!"
|
||||||
+ "\nhiiiii....",
|
+ "\nhiiiii....",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1244,7 +1244,7 @@ test("event2message: rich reply to a missing event will quote from formatted_bod
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# But who sees the seashells she sells sitting..."
|
content: "-# > But who sees the seashells she sells sitting..."
|
||||||
+ "\nWhat a tongue-bender...",
|
+ "\nWhat a tongue-bender...",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1395,8 +1395,8 @@ test("event2message: should avoid using blockquote contents as reply preview in
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 <@111604486476181504>:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 <@111604486476181504>:"
|
||||||
+ "\n> -# that can't be true! there's no way :o"
|
+ " that can't be true! there's no way :o"
|
||||||
+ "\nI agree!",
|
+ "\nI agree!",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1484,8 +1484,8 @@ test("event2message: should include a reply preview when message ends with a blo
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>Ⓜ️**_ooye_cookie**:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>**Ⓜ_ooye_cookie**:"
|
||||||
+ "\n> -# https://tootsuite.net/Warp-Gate2.gif tanget: @..."
|
+ " https://tootsuite.net/Warp-Gate2.gif tanget: @..."
|
||||||
+ "\naichmophobia",
|
+ "\naichmophobia",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1568,8 +1568,8 @@ test("event2message: should include a reply preview when replying to a descripti
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/497161350934560778/1162625810109317170 <@1109360903096369153>:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/497161350934560778/1162625810109317170 <@1109360903096369153>:"
|
||||||
+ "\n> -# It looks like this queue has ended."
|
+ " It looks like this queue has ended."
|
||||||
+ `\nso you're saying on matrix side I would have to edit ^this^ to add "Timed out" before the blockquote?`,
|
+ `\nso you're saying on matrix side I would have to edit ^this^ to add "Timed out" before the blockquote?`,
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1621,8 +1621,8 @@ test("event2message: entities are not escaped in main message or reply preview",
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>Ⓜ️**cadence [they]**:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>**Ⓜcadence [they]**:"
|
||||||
+ "\n> -# Testing? \"':.`[]&things"
|
+ " Testing? \"':.`[]&things"
|
||||||
+ "\n_Testing?_ \"':.\\`\\[\\]&things",
|
+ "\n_Testing?_ \"':.\\`\\[\\]&things",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1671,8 +1671,8 @@ test("event2message: reply preview converts emoji formatting when replying to a
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>Ⓜ️**cadence [they]**:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>**Ⓜcadence [they]**:"
|
||||||
+ "\n> -# <:hippo:230201364309868544>"
|
+ " <:hippo:230201364309868544>"
|
||||||
+ "\nreply",
|
+ "\nreply",
|
||||||
avatar_url: undefined,
|
avatar_url: undefined,
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1721,8 +1721,8 @@ test("event2message: reply preview can guess custom emoji based on the name if i
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>Ⓜ️**cadence [they]**:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>**Ⓜcadence [they]**:"
|
||||||
+ "\n> -# <:hippo:230201364309868544>"
|
+ " <:hippo:230201364309868544>"
|
||||||
+ "\nreply",
|
+ "\nreply",
|
||||||
avatar_url: undefined,
|
avatar_url: undefined,
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1771,8 +1771,8 @@ test("event2message: reply preview uses emoji title text when replying to an unk
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>Ⓜ️**cadence [they]**:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>**Ⓜcadence [they]**:"
|
||||||
+ "\n> -# :svkftngur_gkdne:"
|
+ " :svkftngur_gkdne:"
|
||||||
+ "\nreply",
|
+ "\nreply",
|
||||||
avatar_url: undefined,
|
avatar_url: undefined,
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1821,8 +1821,8 @@ test("event2message: reply preview ignores garbage image", async t => {
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>Ⓜ️**cadence [they]**:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>**Ⓜcadence [they]**:"
|
||||||
+ "\n> -# I am having a nice day"
|
+ " I am having a nice day"
|
||||||
+ "\nreply",
|
+ "\nreply",
|
||||||
avatar_url: undefined,
|
avatar_url: undefined,
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1871,7 +1871,7 @@ test("event2message: reply to empty message doesn't show an extra line or anythi
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>Ⓜ️**cadence [they]**"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>**Ⓜcadence [they]**"
|
||||||
+ "\nreply",
|
+ "\nreply",
|
||||||
avatar_url: undefined,
|
avatar_url: undefined,
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -1953,8 +1953,8 @@ test("event2message: editing a rich reply to a sim user", async t => {
|
||||||
id: "1144874214311067708",
|
id: "1144874214311067708",
|
||||||
message: {
|
message: {
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 <@111604486476181504>:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 <@111604486476181504>:"
|
||||||
+ "\n> -# Slow news day."
|
+ " Slow news day."
|
||||||
+ "\nEditing this reply, which is also a test",
|
+ "\nEditing this reply, which is also a test",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -2244,8 +2244,8 @@ test("event2message: rich reply to a matrix user's long message with formatting"
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 Ⓜ️**cadence [they]**:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 **Ⓜcadence [they]**:"
|
||||||
+ "\n> -# i should have a little happy test list bold em..."
|
+ " i should have a little happy test list bold em..."
|
||||||
+ "\n**no you can't!!!**",
|
+ "\n**no you can't!!!**",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -2307,7 +2307,7 @@ test("event2message: rich reply to an image", async t => {
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 <@111604486476181504> 🖼️"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 <@111604486476181504> 🖼️"
|
||||||
+ "\nCaught in 8K UHD VR QLED Epic Edition",
|
+ "\nCaught in 8K UHD VR QLED Epic Edition",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -2362,8 +2362,8 @@ test("event2message: rich reply to a spoiler should ensure the spoiler is hidden
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 <@111604486476181504>:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 <@111604486476181504>:"
|
||||||
+ "\n> -# [spoiler] cw crossword spoilers you'll never..."
|
+ " [spoiler] cw crossword spoilers you'll never..."
|
||||||
+ "\nomg NO WAY!!",
|
+ "\nomg NO WAY!!",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -2417,8 +2417,8 @@ test("event2message: with layered rich replies, the preview should only be the r
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "cadence [they]",
|
username: "cadence [they]",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 Ⓜ️**cadence [they]**:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>https://discord.com/channels/112760669178241024/687028734322147344/1144865310588014633 **Ⓜcadence [they]**:"
|
||||||
+ "\n> -# two"
|
+ " two"
|
||||||
+ "\nthree",
|
+ "\nthree",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/azCAhThKTojXSZJRoWwZmhvU",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
@ -2473,8 +2473,8 @@ test("event2message: if event is a reply and starts with a quote, they should be
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "Rose",
|
username: "Rose",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>Ⓜ️**Rose**:"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>**ⓂRose**:"
|
||||||
+ "\n> -# i have a feeling that clients are meant to strip..."
|
+ " i have a feeling that clients are meant to strip..."
|
||||||
+ "\n"
|
+ "\n"
|
||||||
+ "\n> To strip the fallback on the `body`, the client should iterate over each line of the string, removing any lines that start with the fallback prefix (\"> “, including the space, without quotes) and stopping when a line is encountered without the prefix. This prefix is known as the “fallback prefix sequence”.",
|
+ "\n> To strip the fallback on the `body`, the client should iterate over each line of the string, removing any lines that start with the fallback prefix (\"> “, including the space, without quotes) and stopping when a line is encountered without the prefix. This prefix is known as the “fallback prefix sequence”.",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/syndicated.gay/ZkBUPXCiXTjdJvONpLJmcbKP",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/syndicated.gay/ZkBUPXCiXTjdJvONpLJmcbKP",
|
||||||
|
@ -2533,7 +2533,7 @@ test("event2message: rich reply to a deleted event", async t => {
|
||||||
messagesToEdit: [],
|
messagesToEdit: [],
|
||||||
messagesToSend: [{
|
messagesToSend: [{
|
||||||
username: "Ampflower 🌺",
|
username: "Ampflower 🌺",
|
||||||
content: "> -# <:L1:1144820033948762203><:L2:1144820084079087647>Ⓜ️**Ampflower 🌺** (in reply to a deleted message)"
|
content: "-# > <:L1:1144820033948762203><:L2:1144820084079087647>**ⓂAmpflower 🌺** (in reply to a deleted message)"
|
||||||
+ "\nHuh it did the same thing here too",
|
+ "\nHuh it did the same thing here too",
|
||||||
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/PRfhXYBTOalvgQYtmCLeUXko",
|
avatar_url: "https://matrix.cadence.moe/_matrix/media/r0/download/cadence.moe/PRfhXYBTOalvgQYtmCLeUXko",
|
||||||
allowed_mentions: {
|
allowed_mentions: {
|
||||||
|
|
Loading…
Reference in a new issue