Commit d6468ad5 authored by John Crepezzi's avatar John Crepezzi
Browse files

Fixed bug that was preventing document lookup

parent 607d3eb3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ connect.createServer(
    });
    // get documents
    app.get('/documents/:id', function(request, response, next) {
      return documentHandler.handleGet(req.params.id, response);
      return documentHandler.handleGet(request.params.id, response);
    });
  }),
  // Otherwise, static