this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Don't be case sensitive when searching hashtags (#601)

authored by

Jaz and committed by
GitHub
911a9f96 0f771484

+1 -1
+1 -1
search/parse_query.go
··· 28 28 p = strings.Trim(p, "\"") 29 29 30 30 if strings.HasPrefix(p, "#") && len(p) > 1 { 31 - tags = append(tags, p[1:]) 31 + tags = append(tags, strings.ToLower(p[1:])) 32 32 continue 33 33 } 34 34 if strings.HasPrefix(p, "did:") {