Add link to export filename to view in browser

This commit is contained in:
JonnyWong16
2020-08-04 10:34:57 -07:00
parent 61c692ad4e
commit 14bb377794
3 changed files with 58 additions and 2 deletions

View File

@@ -984,7 +984,7 @@ def _real_export(export_id, items, attrs, file_format, filename):
def get_export(export_id):
db = database.MonitorDatabase()
result = db.select_single('SELECT filename, complete '
result = db.select_single('SELECT filename, file_format, complete '
'FROM exports WHERE id = ?',
[export_id])