1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 18:50:11 +02:00

metadata: complain if link url isn't a url

This commit is contained in:
Daniel Martí 2015-08-28 11:06:46 -07:00
parent 2253399190
commit 97ba94903e

View File

@ -335,6 +335,8 @@ class DescriptionFormatter:
if index == -1: if index == -1:
raise MetaDataException("Unterminated ]") raise MetaDataException("Unterminated ]")
url = txt[1:index] url = txt[1:index]
if ':' not in url:
raise MetaDataException("Wrong link")
index2 = url.find(' ') index2 = url.find(' ')
if index2 == -1: if index2 == -1:
urltxt = url urltxt = url