Skip to content

Commit

Permalink
Maintenance: Fix wrong history message.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvuckovic committed Oct 3, 2024
1 parent 12e7524 commit cac4440
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class App.GenericHistory extends App.ControllerModal
truncated_article_body = App.Utils.truncate(article_body) or '-'
content = if item.type is 'created' or item.type is 'updated'
if item.value_to
item.id + '/' + App.i18n.translatePlain("reacted with a %s to message from %s '%s'", item.value_to, item.value_from, truncated_article_body)
App.i18n.translatePlain("reacted with a %s to message from %s '%s'", item.value_to, item.value_from, truncated_article_body)

# NB: On MySQL backends, the reaction emoji may get stripped due to column type UTF-8 limitation (`string`).
# Rather than migrating this column on very heavy tables, we are opting to simply change the message here.
Expand Down

0 comments on commit cac4440

Please sign in to comment.