diff --git a/app/javascript/mastodon/features/follow_recommendations/components/account.js b/app/javascript/mastodon/features/follow_recommendations/components/account.js index 23c03d1ff64ee001b73edb35f496dac7e3461c31..bd855aab0cbd4fda2f9d74803e3ac453fb63bbe6 100644 --- a/app/javascript/mastodon/features/follow_recommendations/components/account.js +++ b/app/javascript/mastodon/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]; };