summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authordelthas <delthas@dille.cc>2021-11-17 16:55:30 +0100
committerHubert Hirtz <hubert@hirtz.pm>2021-11-19 10:22:01 +0100
commitcc203677d2280678f6782be7c9d5693c57a42089 (patch)
treeb8300d1b2579240101a1d41f987e76689b1aa81c /ui
parentFix crash when lone slash is entered (diff)
Fix link value, removing debug query string
Diffstat (limited to 'ui')
-rw-r--r--ui/style.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/style.go b/ui/style.go
index 629208b..2f9c588 100644
--- a/ui/style.go
+++ b/ui/style.go
@@ -131,7 +131,7 @@ func (s StyledString) ParseURLs() StyledString {
for i := 0; i < len(urls); i++ {
u := urls[i]
ub, ue := u[0], u[1]
- link := s.string[u[0]:u[1]] + "?a=b"
+ link := s.string[u[0]:u[1]]
// find last style starting before or at url begin
for ; j < len(s.styles); j++ {
st := s.styles[j]