Skip to content

Commit

Permalink
feat(icherche): allow + hashtags to be read (#1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeLafreniere18 authored May 19, 2022
1 parent a93fe12 commit a1c40a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/geo/src/lib/search/shared/sources/source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export class SearchSource {
* @param hashtag hashtag from query
*/
getHashtagsValid(term: string, settingsName: string): string[] {
const hashtags = term.match(/(#[A-Za-z]+)/g);
const hashtags = term.match(/(#[A-Za-z+]+)/g);
if (!hashtags) {
return undefined;
}
Expand Down

0 comments on commit a1c40a4

Please sign in to comment.