rework autocomplete: space after inserting contact without id

This commit is contained in:
rabuzarus 2016-04-16 15:58:11 +02:00 committed by Roland Haeder
parent 9dff16acbc
commit ec86289be2
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ function editor_replace(item) {
// don't add the id if it is empty (the id empty eg. if there are unknow contacts in thread)
if(id.length < 1)
return '$1$2' + item.nick;
return '$1$2' + item.nick.replace(' ', '') + ' ';
// 16 chars of hash should be enough. Full hash could be used if it can be done in a visually appealing way.
// 16 chars is also the minimum length in the backend (otherwise it's interpreted as a local id).