From 14977397fbd8d4b8440c3ce3e32f383cc48ff21d Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 5 Apr 2018 13:27:37 -0500 Subject: [PATCH] Fix "ArgumentError - wrong number of arguments" during tagging. --- app/models/post.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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