From f5a031c831ec857ef74c478b324962246a05cfc7 Mon Sep 17 00:00:00 2001 From: Type-kun Date: Mon, 1 Aug 2016 08:59:09 +0500 Subject: [PATCH] Fixed typo: commentary_check -> check_commentary --- app/models/artist_commentary.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/artist_commentary.rb b/app/models/artist_commentary.rb index aa0ba71bf..8c71201ef 100644 --- a/app/models/artist_commentary.rb +++ b/app/models/artist_commentary.rb @@ -105,11 +105,11 @@ class ArtistCommentary < ActiveRecord::Base end if remove_commentary_check_tag == "1" - post.remove_tag("commentary_check") + post.remove_tag("check_commentary") end if add_commentary_check_tag == "1" - post.add_tag("commentary_check") + post.add_tag("check_commentary") end post.save if post.tag_string_changed?