Skip to content

Commit

Permalink
Merge branch 'pr2462'
Browse files Browse the repository at this point in the history
  • Loading branch information
NoaHimesaka1873 committed Jul 9, 2024
2 parents ecdc125 + 3a4f38a commit cb12947
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import { DisplayName } from '../../../components/display_name';
import MediaGallery from '../../../components/media_gallery';
import StatusContent from '../../../components/status_content';
import StatusReactions from '../../../components/status_reactions';
import { visibleReactions } from '../../../initial_state';
import Audio from '../../audio';
import scheduleIdleTask from '../../ui/util/schedule_idle_task';
import Video from '../../video';
Expand Down Expand Up @@ -311,13 +312,13 @@ class DetailedStatus extends ImmutablePureComponent {
{...statusContentProps}
/>

<StatusReactions
{visibleReactions > 0 && (<StatusReactions
statusId={status.get('id')}
reactions={status.get('reactions')}
addReaction={this.props.onReactionAdd}
removeReaction={this.props.onReactionRemove}
canReact={this.props.identity.signedIn}
/>
/>)}

<div className='detailed-status__meta'>
<div className='detailed-status__meta__line'>
Expand Down
4 changes: 3 additions & 1 deletion app/lib/activitypub/activity/emoji_react.rb
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# frozen_string_literal: true

class ActivityPub::Activity::EmojiReact < ActivityPub::Activity
CUSTOM_EMOJI_REGEX = /^:[^:]+:$/

def perform
original_status = status_from_uri(object_uri)
name = @json['content']
return if original_status.nil? ||
!original_status.account.local? ||
delete_arrived_first?(@json['id'])

if /^:.*:$/.match?(name)
if CUSTOM_EMOJI_REGEX.match?(name)
name.delete! ':'
custom_emoji = process_emoji_tags(name, @json['tag'])

Expand Down
4 changes: 3 additions & 1 deletion app/lib/activitypub/activity/like.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# frozen_string_literal: true

class ActivityPub::Activity::Like < ActivityPub::Activity
CUSTOM_EMOJI_REGEX = /^:[^:]+:$/

def perform
original_status = status_from_uri(object_uri)
return if original_status.nil? || !original_status.account.local? || delete_arrived_first?(@json['id'])
Expand All @@ -23,7 +25,7 @@ def maybe_process_embedded_reaction
name = @json['content'] || @json['_misskey_reaction']
return false if name.nil?

if /^:.*:$/.match?(name)
if CUSTOM_EMOJI_REGEX.match?(name)
name.delete! ':'
custom_emoji = process_emoji_tags(name, @json['tag'])

Expand Down
4 changes: 3 additions & 1 deletion app/lib/activitypub/activity/undo.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# frozen_string_literal: true

class ActivityPub::Activity::Undo < ActivityPub::Activity
CUSTOM_EMOJI_REGEX = /^:[^:]+:$/

def perform
case @object['type']
when 'Announce'
Expand Down Expand Up @@ -125,7 +127,7 @@ def undo_emoji_react

return if status.nil? || !status.account.local?

if /^:.*:$/.match?(name)
if CUSTOM_EMOJI_REGEX.match?(name)
name.delete! ':'
custom_emoji = process_emoji_tags(name, @object['tag'])

Expand Down

0 comments on commit cb12947

Please sign in to comment.