From a2df246dbb7f729cf73f4b1a8d2909eec3a57d26 Mon Sep 17 00:00:00 2001 From: Jason Calabrese Date: Fri, 31 Oct 2014 00:44:48 -0700 Subject: [PATCH] fixed type when creating the pebble endpoint --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index d82de59399b..bc03f70844b 100644 --- a/server.js +++ b/server.js @@ -71,7 +71,7 @@ app.enable('trust proxy'); // Allows req.secure test on heroku https connections app.use('/api/v1', api); // pebble data -app.get('/pebble', pebble(entriesStorage, treatmentsStorage)); +app.get('/pebble', pebble(entriesStorage, devicestatusStorage)); //app.get('/package.json', software);