This commit is contained in:
Jose Augusto 2020-12-27 17:55:53 -03:00
parent 24757a6922
commit b85a344cb2
1 changed files with 1 additions and 3 deletions

View File

@ -1523,9 +1523,7 @@ class Terminal(Gtk.VBox):
url = urlmatch[0]
match = urlmatch[1]
if match == self.matches['email'] and url[0:7] != 'mailto:':
url = 'mailto:' + url
elif match == self.matches['addr_only'] and url[0:3] == 'ftp':
if match == self.matches['addr_only'] and url[0:3] == 'ftp':
url = 'ftp://' + url
elif match == self.matches['addr_only']:
url = 'http://' + url