Fix admin actions log crash when displaying updates of deleted announcements (#13489)

Fixes #13487
lolsob-rspec
ThibG 2020-04-17 19:54:58 +02:00 committed by GitHub
parent efd5db8f21
commit a93fc74d31
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ module Admin::ActionLogsHelper
I18n.t('admin.action_logs.deleted_status')
end
when 'Announcement'
truncate(attributes['text'])
truncate(attributes['text'].is_a?(Array) ? attributes['text'].last : attributes['text'])
end
end
end