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