0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00

fix: remove unused parameters from processBody method invocation (#1184)

This commit is contained in:
Daniel Ruf 2019-01-14 19:34:03 +01:00 committed by Juan Picado @jotadeveloper
parent f20fefaf87
commit 064f7cfa5d

View file

@ -141,7 +141,7 @@ class ProxyStorage implements IProxy {
let error;
const responseLength = err ? 0 : body.length;
// $FlowFixMe
processBody(err, body);
processBody();
logActivity();
// $FlowFixMe
cb(err, res, body);