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
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 26m3s
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user