diff --git a/app/models/artist.rb b/app/models/artist.rb index 64d691771..9c734f62e 100644 --- a/app/models/artist.rb +++ b/app/models/artist.rb @@ -322,7 +322,7 @@ class Artist < ActiveRecord::Base # potential race condition but unlikely unless TagImplication.where(:antecedent_name => name, :consequent_name => "banned_artist").exists? - tag_implication = TagImplication.create!(:antecedent_name => name, :consequent_name => "banned_artist", :skip_secondary_validations => true, :status => "pending") + tag_implication = TagImplication.create!(:antecedent_name => name, :consequent_name => "banned_artist", :skip_secondary_validations => true) tag_implication.approve!(CurrentUser.user) end