fixed updateFile transaction
gitea/salix/test This commit looks good Details

This commit is contained in:
Joan Sanchez 2019-07-16 13:55:24 +02:00
parent 89a3c399c1
commit e870c26c70
1 changed files with 2 additions and 2 deletions

View File

@ -79,10 +79,10 @@ module.exports = Self => {
}, myOptions);
if (hasAttachedFile)
updatedDms = await uploadNewFile(ctx, dms, myOptions);
await uploadNewFile(ctx, dms, myOptions);
if (tx) await tx.commit();
return updatedDms;
return dms;
} catch (e) {
if (tx) await tx.rollback();
throw e;