Browse Source

Fix encoding error in OpenGraph account description (#17821)

Fixes #17816
closed-social-glitch-2
Claire 2 years ago
committed by GitHub
parent
commit
443d114574
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/helpers/accounts_helper.rb

+ 1
- 1
app/helpers/accounts_helper.rb View File

@ -95,7 +95,7 @@ module AccountsHelper
].join(' '),
].join(', ')
[prepend_str, account.note].join(' · ')
[prepend_str, account.note].join(' · ')
end
def svg_logo

Loading…
Cancel
Save