0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 16:22:44 +00:00

Ensure getBrew returns an object if undefined

This commit is contained in:
Trevor Buckner
2023-01-12 13:33:55 -05:00
parent 901615d99e
commit da676c6ec1

View File

@@ -82,7 +82,7 @@ If you believe you should have access to this brew, ask the file owner to invite
stub = _.defaults(stub, DEFAULT_BREW_LOAD); // Fill in blank fields
}
req.brew = stub;
req.brew = stub ?? {};
next();
};
},