Automatically add https:// to go links without.

This commit is contained in:
Flancian 2020-11-22 19:05:10 +01:00
parent 67902cfa8a
commit 83d1fbfc48
1 changed files with 9 additions and 1 deletions

View File

@ -108,7 +108,15 @@ class Subnode:
def go(self):
# returns a set of go links contained in this node
return subnode_to_actions(self, 'go')
golinks = subnode_to_actions(self, 'go')
sanitized_golinks = []
for golink in golinks:
if golink.startswith('http'):
sanitized_golinks.append(golink)
else:
# hack hack.
sanitized_golinks.append('https://' + golink)
return sanitized_golinks
def subnode_to_actions(subnode, action):