fix for async whilst derp

This commit is contained in:
Barış Soner Uşaklı
2016-02-16 20:25:23 +02:00
parent 88e4591f88
commit 8f25994482

View File

@@ -418,7 +418,9 @@ var async = require('async'),
next();
}
});
}, next);
}, function(err) {
next(err, roomId);
});
}
], callback);
};