Skip to content

Commit

Permalink
Fix: #367 #557 Webで引用された投稿を表示すると、その投稿のリアクション情報がリセットされる (#702)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmycode committed Apr 8, 2024
1 parent 25d7d3c commit c147b6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/mastodon/actions/importer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function importFetchedStatuses(statuses) {
processStatus(status.reblog);
}

if (status.quote && status.quote.id) {
if (status.quote && status.quote.id && !getState().getIn(['statuses', status.id])) {
processStatus(status.quote);
}

Expand Down

0 comments on commit c147b6d

Please sign in to comment.