Browse Source

Fix newlines not being considered sentence separators in account note (#16079)

Also bullets
closed-social-v3
Eugen Rochko 3 years ago
committed by GitHub
parent
commit
b5ac17c4b6
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/javascript/mastodon/features/follow_recommendations/components/account.js

+ 1
- 1
app/javascript/mastodon/features/follow_recommendations/components/account.js View File

@ -27,7 +27,7 @@ const makeMapStateToProps = () => {
};
const getFirstSentence = str => {
const arr = str.split(/(([\.\?!]+\s)|[.。?!])/);
const arr = str.split(/(([\.\?!]+\s)|[.。?!\n•])/);
return arr[0];
};

Loading…
Cancel
Save