[Forum] Fix display of topics with errored tag relations

This commit is contained in:
Earlopain 2021-11-19 20:23:04 +01:00
parent 2a06d7ec47
commit 61c13e2512
No known key found for this signature in database
GPG Key ID: 6CFB948E15246897

View File

@ -18,7 +18,7 @@ module ForumTopicsHelper
elsif obj.is_pending?
return "The #{obj.relationship} ##{obj.id} [[#{obj.antecedent_name}]] -> [[#{obj.consequent_name}]] is pending approval."
elsif obj.is_errored?
return "The #{obj.relationship} ##{obj.id} [[#{obj.antecedent_name}]] -> [[#{obj.consequent_name}]] (#{relationship} failed during processing."
return "The #{obj.relationship} ##{obj.id} [[#{obj.antecedent_name}]] -> [[#{obj.consequent_name}]] (#{obj.relationship} failed during processing."
else # should never happen
return "The #{obj.relationship} ##{obj.id} [[#{obj.antecedent_name}]] -> [[#{obj.consequent_name}]] has an unknown status."
end