core: Default to loading into the ssb app. No more messing around.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 26m3s

This commit is contained in:
2025-01-05 14:52:27 -05:00
parent d1b7681efc
commit 23db09f9b7
4 changed files with 22 additions and 16 deletions

View File

@ -253,7 +253,10 @@ class TfMessageElement extends LitElement {
render_mentions() {
let mentions = this.message?.content?.mentions || [];
mentions = mentions.filter(
(x) => this.message?.content?.text?.indexOf(typeof(x) === 'string' ? x : x.link) === -1
(x) =>
this.message?.content?.text?.indexOf(
typeof x === 'string' ? x : x.link
) === -1
);
if (mentions.length) {
let self = this;