tangled
alpha
login
or
join now
oppi.li
/
indigo
fork of indigo with slightly nicer lexgen
0
fork
atom
overview
issues
pulls
pipelines
add missing error check (derp)
bnewbold.net
2 years ago
aaab8c13
6c08a0e7
options
unified
split
Changed files
+3
search
url.go
+3
search/url.go
···
42
43
// remove tracking params
44
u, err := url.Parse(clean)
0
0
0
45
if u.RawQuery == "" {
46
return clean
47
}
···
42
43
// remove tracking params
44
u, err := url.Parse(clean)
45
+
if err != nil {
46
+
return clean
47
+
}
48
if u.RawQuery == "" {
49
return clean
50
}