diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-03-17 16:32:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 16:32:11 +0100 |
commit | 443d114574ef152f14815afc5c4ed5c977dd9205 (patch) | |
tree | fee399edf99792dba8a235ef5833eae464fe1dca /app/helpers | |
parent | a9bafe5df543e23cb7950cfcecb3e7b5932674cd (diff) |
Fix encoding error in OpenGraph account description (#17821)
Fixes #17816
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/accounts_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/accounts_helper.rb b/app/helpers/accounts_helper.rb index db3da2b05..a33961724 100644 --- a/app/helpers/accounts_helper.rb +++ b/app/helpers/accounts_helper.rb @@ -95,7 +95,7 @@ module AccountsHelper ].join(' '), ].join(', ') - [prepend_str, account.note].join(' · ') + [prepend_str, account.note].join(' · ') end def svg_logo |