Browse Source

Remove 'next' from node controller

pm2
Luke Childs 8 years ago
parent
commit
f2e55da0fc
  1. 2
      controllers/node.js

2
controllers/node.js

@ -1,7 +1,7 @@
const tor = require('../lib/tor');
const bandwidthChart = require('../lib/bandwidth-chart');
module.exports = (req, res, next) => {
module.exports = (req, res) => {
Promise.all([
tor.node(req.params.id),
tor.bandwidth(req.params.id)

Loading…
Cancel
Save