Skip to content

Commit

Permalink
Fix rubocop lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEssem committed Jan 28, 2024
1 parent 07abc09 commit 9eef129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/concerns/account/interactions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def favourited?(status)
end

def reacted?(status, name, custom_emoji = nil)
status.proper.status_reactions.where(account: self, name: name, custom_emoji: custom_emoji).exists?
status.proper.status_reactions.exists?(account: self, name: name, custom_emoji: custom_emoji)
end

def bookmarked?(status)
Expand Down

0 comments on commit 9eef129

Please sign in to comment.