Fixed map generation if no adif file was selected
This commit is contained in:
parent
500255a612
commit
d56e509918
2
web.py
2
web.py
|
@ -12,7 +12,7 @@ def render():
|
||||||
svg_stream = StringIO()
|
svg_stream = StringIO()
|
||||||
|
|
||||||
adiffile = request.files.get('adif')
|
adiffile = request.files.get('adif')
|
||||||
if adiffile and len(adiffile.filename) > 0:
|
if adiffile and adiffile.filename != "empty":
|
||||||
if adiffile.filename[-4:] not in ['.adi', '.adf'] and adiffile.filename[-5:] not in ['.adif']:
|
if adiffile.filename[-4:] not in ['.adi', '.adf'] and adiffile.filename[-5:] not in ['.adif']:
|
||||||
return "File extension not allowed."
|
return "File extension not allowed."
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue