Monorepo for Tangled tangled.org
8

Configure Feed

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

appview/state: allow "lang" language filter alias to profile repos page

Signed-off-by: Smit Patil <smit@smit.codes>

Signed-off-by: smit.codes <smit@smit.codes>

author
smit.codes
committer
Anirudh Oppiliappan
date (Jun 11, 2026, 10:03 AM +0300) commit b5c9bccb parent 20cd23db change-id sqmskpmz
+1 -1
+1 -1
appview/state/profile.go
··· 245 245 query := searchquery.Parse(params.Get("q")) 246 246 247 247 var language string 248 - if lang := query.Get("language"); lang != nil { 248 + if lang := cmp.Or(query.Get("language"), query.Get("lang")); lang != nil { 249 249 language = *lang 250 250 } 251 251