fix: compliance fixes

This commit is contained in:
Taranto 2020-10-02 14:33:21 +01:00 committed by Josh Harvey
parent c45241471e
commit 118852a433
5 changed files with 10 additions and 8 deletions

View file

@ -278,7 +278,7 @@ function updateCustomer (req, res, next) {
// machines before 7.5 expect customer with sanctions result
const isOlderMachineVersion = !machineVersion || semver.lt(machineVersion, '7.5.0-beta.0')
Promise.resolve({})
return Promise.resolve({})
.then(emptyObj => {
if (!isOlderMachineVersion) return Promise.resolve(emptyObj)
return compliance.validationPatch(req.deviceId, !!compatTriggers.sanctions, mergedCustomer)
@ -287,7 +287,6 @@ function updateCustomer (req, res, next) {
.then(newPatch => customers.updatePhotoCard(id, newPatch))
.then(newPatch => customers.updateFrontCamera(id, newPatch))
.then(newPatch => customers.update(id, newPatch, null, txId))
})
.then(customer => respond(req, res, { customer }))
.catch(next)