When you hit an upload_error, alert the user

This commit is contained in:
Micah Lee 2019-02-11 23:23:31 -08:00
parent e9ac9fe1b6
commit 670b967020

View File

@ -82,7 +82,14 @@ class ReceiveModeWeb(object):
if request.upload_error:
self.common.log('ReceiveModeWeb', 'define_routes', '/upload, there was an upload error')
self.web.add_request(self.web.REQUEST_ERROR_DATA_DIR_CANNOT_CREATE, request.path, {
"receive_mode_dir": request.receive_mode_dir
})
print(strings._('error_cannot_create_data_dir').format(request.receive_mode_dir))
flash('Error uploading, please inform the OnionShare user', 'error')
if self.common.settings.get('public_mode'):
return redirect('/')
else: