Merge pull request #4073 from BrokenEagle/fix-4057

Remove references to Keeper/TopTagger
This commit is contained in:
Albert Yi
2019-04-12 17:03:48 -07:00
committed by GitHub
2 changed files with 0 additions and 10 deletions

View File

@@ -61,9 +61,6 @@ module DelayedJobsHelper
when "BulkRevert#process"
"<strong>bulk revert</strong>"
when "PostKeeperManager.check_and_update"
"<strong>update top tagger</strong>"
else
h(job.name)
end
@@ -71,9 +68,6 @@ module DelayedJobsHelper
def print_handler(job)
case job.name
when "PostKeeperManager.check_and_assign"
""
when "Tag.increment_post_counts", "Tag.decrement_post_counts"
""
@@ -130,9 +124,6 @@ module DelayedJobsHelper
when "BulkRevert#process"
h(job.payload_object.args.join(" "))
when "PostKeeperManager.check_and_update"
h(job.payload_object.args[0])
end
end
end

View File

@@ -156,7 +156,6 @@ Blacklist.post_match = function(post, entry) {
tags.push("user:" + $post.attr("data-uploader").toLowerCase());
}
tags.push("uploaderid:" + $post.attr("data-uploader-id"));
tags.push("toptaggerid:" + $post.attr("data-top-tagger"));
$.each(String($post.data("flags")).match(/\S+/g) || [], function(i, v) {
tags.push("status:" + v);
});