Browse Source

Reduce discrepancies between server and client-side character count (#5360)

pull/4/head
ThibG 6 years ago
committed by Eugen Rochko
parent
commit
d37305c628
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/features/compose/util/counter.js

+ 1
- 1
app/javascript/mastodon/features/compose/util/counter.js View File

@ -5,5 +5,5 @@ const urlPlaceholder = 'xxxxxxxxxxxxxxxxxxxxxxx';
export function countableText(inputText) {
return inputText
.replace(urlRegex, urlPlaceholder)
.replace(/(?:^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9\.\-]+)/ig, '@$2');
.replace(/(?:^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9\.\-]+[a-z0-9]+)/ig, '@$2');
};

Loading…
Cancel
Save