diff --git a/app/assets/javascripts/blacklists.js b/app/assets/javascripts/blacklists.js index 0f8ba8cb5..f878464ee 100644 --- a/app/assets/javascripts/blacklists.js +++ b/app/assets/javascripts/blacklists.js @@ -147,7 +147,7 @@ var tags = String($post.attr("data-tags")).match(/\S+/g) || []; tags = tags.concat(String($post.attr("data-pools")).match(/\S+/g) || []); tags.push("rating:" + $post.data("rating")); - tags.push("user:" + $post.attr("data-uploader").toLowerCase()); + // tags.push("user:" + $post.attr("data-uploader").toLowerCase()); $.each(String($post.data("flags")).match(/\S+/g) || [], function(i, v) { tags.push("status:" + v); }); diff --git a/app/models/post.rb b/app/models/post.rb index dc8b06c08..cff08f51b 100644 --- a/app/models/post.rb +++ b/app/models/post.rb @@ -554,7 +554,7 @@ class Post < ApplicationRecord PostKeeperManager.check_and_update(self, CurrentUser.id, increment_tags) # run this again async to check for race conditions - PostKeeperManager.queue_check(self) + PostKeeperManager.queue_check(self, CurrentUser.id) end end