ssb: Filter out invalid RPC flags.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 32m12s
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 32m12s
This commit is contained in:
@ -632,8 +632,10 @@ class TfMessageElement extends LitElement {
|
||||
}
|
||||
|
||||
allow_unread() {
|
||||
return this.channel == '@' ||
|
||||
(!this.channel.startsWith('@') && !this.channel.startsWith('%'));
|
||||
return (
|
||||
this.channel == '@' ||
|
||||
(!this.channel.startsWith('@') && !this.channel.startsWith('%'))
|
||||
);
|
||||
}
|
||||
|
||||
render_unread_icon() {
|
||||
|
Reference in New Issue
Block a user