I guess something around filtering is not working as expected. It seems that boosts by a followee is unexpectedly filtered out.
app/javascript/mastodon/components/status.jsでstatus.get('filtered') || status.getIn(['reblog', 'filtered'])のたぶんstatus.reblog.filteredがfalseになっててほしいのにtrueになってるんだろうけど
app/javascript/mastodon/selectors/index.jsの97行目くらいかしら…
statusReblog?.get('filtered')をパーズできないでいますw
あった。Rubyのぼっち演算子に似てるんだ。レシーバがnullishの場合にそれを返して、そうではない場合に右のプロパティを評価する
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining