tangled
alpha
login
or
join now
mackuba.eu
/
skythread
14
fork
atom
Thread viewer for Bluesky
14
fork
atom
overview
issues
pulls
pipelines
truncated Bridgy posts now end with a […]
mackuba.eu
2 years ago
16cd6436
cb1f9168
+1
-1
1 changed file
expand all
collapse all
unified
split
models.js
+1
-1
models.js
reviewed
···
244
244
245
245
/** @returns {boolean} */
246
246
get isTruncatedFediPost() {
247
247
-
return this.isFediPost && (this.text.endsWith('…') || this.text.endsWith('(…)'));
247
247
+
return this.isFediPost && (this.text.endsWith('…') || this.text.endsWith('[…]'));
248
248
}
249
249
250
250
/** @returns {string} */