[Glitch] Fix newlines not being considered sentence separators in account note

Port b5ac17c4b6 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
master
Eugen Rochko 3 years ago committed by Claire
parent 89bc4dff6f
commit 0936ae4132
  1. 2
      app/javascript/flavours/glitch/features/follow_recommendations/components/account.js

@ -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