Merge pull request #3101 from Gared/fix_crash_on_invalid_export
Fixed crash on invalid export url
This commit is contained in:
commit
b8a4648d6d
1 changed files with 3 additions and 2 deletions
|
@ -78,8 +78,9 @@ exports.doExport = function(req, res, padId, type)
|
|||
{
|
||||
exporttxt.getPadTXTDocument(padId, req.params.rev, function(err, txt)
|
||||
{
|
||||
if(ERR(err)) return;
|
||||
res.send(txt);
|
||||
if(!err) {
|
||||
res.send(txt);
|
||||
}
|
||||
});
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue