Drop a wrong issue reference from a comment

This commit is contained in:
2026-09-16 12:23:47 -07:00
parent 191c4e7e68
commit f79915aa89
+1 -1
View File
@@ -124,7 +124,7 @@ export function shareBody(share: Pick<SharedContent, "text" | "url">): string {
* Only what the reader needs to recognize it as theirs: the title, the start * Only what the reader needs to recognize it as theirs: the title, the start
* of the text or link, and the names of the files. It is shown before any of * of the text or link, and the names of the files. It is shown before any of
* it goes near a message, because the page cannot tell a share the reader * it goes near a message, because the page cannot tell a share the reader
* made from one a website posted at the same address (#375 review). * made from one a website posted at the same address.
*/ */
export function shareSummary(share: SharedContent): { title: string; preview: string; files: string[] } { export function shareSummary(share: SharedContent): { title: string; preview: string; files: string[] } {
const body = [share.text, share.url].map((s) => s.trim()).filter(Boolean).join(" "); const body = [share.text, share.url].map((s) => s.trim()).filter(Boolean).join(" ");