Skip to content

Commit

Permalink
Fix string interpolation for software updates admin mailer (mastodon#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire authored Apr 23, 2024
1 parent 049b159 commit a239904
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<%= raw t('admin_mailer.new_critical_software_updates.body') %>
<% @software_updates.each do |update| %>
- Mastodon #{update.version}: #{update.release_notes}
- Mastodon <%= update.version %>: <%= update.release_notes %>
<% end %>
<%= raw t('application_mailer.view')%> <%= admin_software_updates_url %>
2 changes: 1 addition & 1 deletion app/views/admin_mailer/new_software_updates.text.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<%= raw t('admin_mailer.new_software_updates.body') %>
<% @software_updates.each do |update| %>
- Mastodon #{update.version}: #{update.release_notes}
- Mastodon <%= update.version %>: <%= update.release_notes %>
<% end %>
<%= raw t('application_mailer.view')%> <%= admin_software_updates_url %>

0 comments on commit a239904

Please sign in to comment.