Added brackets to case statements (airbnb 15.5)

master
Keith Irwin 2017-12-21 12:41:04 -05:00
parent 37d9cdadf9
commit 74692eba95
No known key found for this signature in database
GPG Key ID: 378933C743E2BBC0
2 changed files with 12 additions and 9 deletions

View File

@ -103,7 +103,7 @@ module.exports = (app, passport) => {
.catch((err) => { switch (err.responseCode) {
// Mailbox doesn't exist
case 550:
case 550: {
debug(`Failed to email new user ${user.id} instructions to create a password because the mailbox for ${user.email} wasn't found. `)
// Remove user
@ -118,10 +118,12 @@ module.exports = (app, passport) => {
break
// Other error
default:
} default: {
debug(`Failed to email new user ${user.id} instructions to create a password!`)
mw.throwErr(err, req)
res.redirect('/login#signup')
}
} })
}
})

View File

@ -406,18 +406,19 @@ loadGoogleMapsAPI({ key: mapKey })
radius: rad
}, function (data, status) {
switch (status) {
// Success
case googlemaps.StreetViewStatus.OK:
// Success
case googlemaps.StreetViewStatus.OK: {
cb(data)
break
// No results in that radius
case googlemaps.StreetViewStatus.ZERO_RESULTS:
// Try again with a bigger radius
// No results in that radius
} case googlemaps.StreetViewStatus.ZERO_RESULTS: {
// Try again with a bigger radius
getStreetViewData(loc, rad * 2, cb)
break
// Error
default:
// Error
} default:
console.error(new Error('Street view not available: ' + status).message)
}
}
})
}