Skip to content

Commit

Permalink
Fix bug where emails that have alias added do not get released
Browse files Browse the repository at this point in the history
  • Loading branch information
robguthrie committed Apr 23, 2024
1 parent a89686d commit ee843cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/received_email_service.rb
Expand Up @@ -9,7 +9,7 @@ def self.refresh_forward_email_rules
end

def self.route_all
ReceivedEmail.unreleased.where(group_id: nil).each do |email|
ReceivedEmail.unreleased.each do |email|
route(email)
end
end
Expand Down

0 comments on commit ee843cf

Please sign in to comment.