Skip to content
Snippets Groups Projects
Commit 4edc7d89 authored by syuilo's avatar syuilo
Browse files

enhance of f01e6ef6

parent 6a29b182
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,11 @@ export class ReactionService {
.where('id = :id', { id: note.id })
.execute();
this.perUserReactionsChart.update(user, note);
const meta = await this.metaService.fetch();
if (meta.enableChartsForRemoteUser || (user.host == null)) {
this.perUserReactionsChart.update(user, note);
}
// カスタム絵文字リアクションだったら絵文字情報も送る
const decodedReaction = this.decodeReaction(reaction);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment