Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/utils/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def make_link(m):
host_part = parts[0]

if host_part.startswith('www.'):
host_part = '.'.join(host_part.split('.')[1:]) # add extra idnetification for external link
host_part = '.'.join(host_part.split('.')[1:]) # add extra identification for external link
if not local_domain or not host_part.endswith(local_domain):
params += ' class="external" '
tb = True
Expand Down