this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Include sig in formatLabel

futur ebae6996 3e824683

+2 -1
+2 -1
src/util/labels.ts
··· 8 8 export function formatLabel( 9 9 label: ComAtprotoLabelDefs.Label, 10 10 ): StrictPartial<ComAtprotoLabelDefs.Label> { 11 - const { src, uri, cid, val, neg, cts, exp } = label; 11 + const { src, uri, cid, val, neg, cts, exp, sig } = label; 12 12 return { 13 13 ver: LABEL_VERSION, 14 14 src, ··· 18 18 neg: !!neg, 19 19 cts, 20 20 ...(exp ? { exp } : {}), 21 + ...(sig ? { sig } : {}), 21 22 } as never; 22 23 } 23 24