Ensure getBrew returns an object if undefined

This commit is contained in:
Trevor Buckner
2023-01-21 17:11:28 +01:00
committed by Victor Losada Hernandez
parent 692daa88fc
commit 128b299f25
+1 -1
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 stub = _.defaults(stub, DEFAULT_BREW_LOAD); // Fill in blank fields
} }
req.brew = stub; req.brew = stub ?? {};
next(); next();
}; };
}, },