Merge pull request #401 from mredigonda/mentions-parser

Fixes mentions-parser to ignore alphabetic characters
This commit is contained in:
Ivan Diaz 2018-11-23 17:54:02 -03:00 committed by GitHub
commit 540a91ccd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ class MentionsParser {
parsingLink = true;
parsingType = PARSING_MENTION;
parsingSegment = '';
} else if(!this.isAlphanumeric(character) && parsingLink){
} else if(!this.isDigit(character) && parsingLink){
ans += this.compileSegment(parsingSegment, parsingType);
parsingLink = false;
@ -34,8 +34,8 @@ class MentionsParser {
return ans;
}
isAlphanumeric(string){
return /[a-zA-Z0-9]/.test(string);
isDigit(string){
return /[0-9]/.test(string);
}
compileSegment(segment, parsingType){