Skip to content

Commit

Permalink
Fix transponder typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Slasher154 committed Mar 12, 2018
1 parent 8947969 commit 718d5d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/routes/v1/transponders.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var {Transponders} = require('../../models/transponders');
// find transponder by id
transponderRouter.post('/transponders/find-by-id', (req, res) => {
const transponderId = req.body.transponderId;
console.log(`Transopnder ID = ${transponderId}`)
console.log(`Transponder ID = ${transponderId}`)
Transponders.findById(transponderId).then(transponder => {
res.status(200).send({transponder})
}).catch(e => {
Expand Down

0 comments on commit 718d5d6

Please sign in to comment.