We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create two users username 1: Muhammed lkan Coskun username 2: Muhammed İlkan Coşkun
Muhammed lkan Coskun
Muhammed İlkan Coşkun
Clicking reply on their posts adds the mention into the post body but username 2 can't be mentioned.
Did some console.log in parse method seems regex doesn't get the complete username for username 2
// post 1 split content [ '<p dir="auto">my first post</p>\n' ] split content [ '<p dir="auto">@muhammed-lkan-coskun it works</p>\n' ] matches [ '@muhammed-lkan-coskun' ] // works here // post 2 split content [ '<p dir="auto">now with turkish characters</p>\n' ] split content [ '<p dir="auto">@muhammed-i̇lkan-coşkun a mention</p>\n' ] matches [ '@muhammed-i' ] // seems like doesnt match the whole thing
The text was updated successfully, but these errors were encountered:
NodeBB/NodeBB@dc6e629
Got the fix from https://github.com/julianlam/nodebb-plugin-mentions/blob/master/static/autofill.js#L59, since selecting these usernames from the autofill dropdown was working, turns out the autofill dropdown is preserving the case so the turkish capital i wasn't converted into a weird character.
Sorry, something went wrong.
👏 for the fix, looked like a tough one to narrow down
barisusakli
No branches or pull requests
Create two users
username 1:
Muhammed lkan Coskun
username 2:
Muhammed İlkan Coşkun
Clicking reply on their posts adds the mention into the post body but username 2 can't be mentioned.
Did some console.log in parse method seems regex doesn't get the complete username for username 2
The text was updated successfully, but these errors were encountered: