This commit is contained in:
yystopf 2023-02-10 15:39:09 +08:00
parent 53c2ffffb3
commit 4a8e3324af
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ class Project < ApplicationRecord
last_issue = self.issues.last
deleted_issue_count = ($redis_cache.hget("issue_cache_delete_count", self.id) || 0).to_i
last_issue.project_issues_index.present? ? last_issue.project_issues_index + deleted_issue_count : 1
last_issue&.project_issues_index.present? ? last_issue.project_issues_index + deleted_issue_count : 1
end
def incre_project_issue_cache_delete_count