mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Fixes link title truncation
This commit is contained in:
parent
897e29c28f
commit
4691cfa515
1 changed files with 1 additions and 1 deletions
|
|
@ -709,7 +709,7 @@ class DescriptionFormatter:
|
|||
if index2 == -1:
|
||||
urltxt = url
|
||||
else:
|
||||
urltxt = url[index2 + 1]
|
||||
urltxt = url[index2 + 1:]
|
||||
url = url[:index]
|
||||
linkified_html += '<a href="' + url + '">' + cgi.escape(urltxt) + '</a>'
|
||||
linkified_plain += urltxt
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue