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

pre-filter brews list when finding google brews

This commit is contained in:
Charlie Humphreys
2022-05-26 04:45:50 +00:00
parent 627c52e845
commit b54b7e317e

View File

@@ -190,7 +190,7 @@ app.get('/user/:username', async (req, res, next)=>{
});
if(googleBrews && googleBrews.length > 0) {
for (const brew of brews) {
for (const brew of brews.filter(brew => brew.googleId)) {
const match = googleBrews.findIndex((b)=>b.editId === brew.editId);
if(match !== -1) {
brew.googleId = googleBrews[match].googleId;