An ATproto social media client -- with an independent Appview.
6
fork

Configure Feed

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

fix android runtime

authored by

João Ferreiro and committed by
Paul Frazee
affe2c85 07263505

+2 -2
+2 -2
src/lib/strings.ts
··· 75 75 let ents: Entity[] = [] 76 76 { 77 77 // mentions 78 - const re = /(^|\s|\()(@)([a-zA-Z0-9\.-]+)(\b)/dg 78 + const re = /(^|\s|\()(@)([a-zA-Z0-9\.-]+)(\b)/g 79 79 while ((match = re.exec(text))) { 80 80 if (knownHandles && !knownHandles.has(match[3])) { 81 81 continue // not a known handle ··· 95 95 { 96 96 // links 97 97 const re = 98 - /(^|\s|\()((https?:\/\/[\S]+)|((?<domain>[a-z][a-z0-9]*(\.[a-z0-9]+)+)[\S]*))/dgm 98 + /(^|\s|\()((https?:\/\/[\S]+)|((?<domain>[a-z][a-z0-9]*(\.[a-z0-9]+)+)[\S]*))/gm 99 99 while ((match = re.exec(text))) { 100 100 let value = match[2] 101 101 if (!value.startsWith('http')) {