diff --git a/server/app.js b/server/app.js index e3978ee8b..1bdb5aac3 100644 --- a/server/app.js +++ b/server/app.js @@ -319,9 +319,6 @@ app.get('/user/:username', dbCheck, async (req, res, next)=>{ // If stub matches file from Google, use Google metadata over stub metadata if(googleBrews && googleBrews.length > 0) { for (const brew of brews.filter((brew)=>brew.googleId)) { - const permissionCheck = await GoogleActions.checkPermissions(auth, brew); - brew.permissionCheck = permissionCheck; - const match = googleBrews.findIndex((b)=>b.editId === brew.editId); if(match !== -1) { brew.googleId = googleBrews[match].googleId;