0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-04 19:02:38 +00:00

Fix alignment

This commit is contained in:
Trevor Buckner
2021-08-24 23:55:03 -04:00
parent 779426dbb1
commit e9939e7a0d

View File

@@ -359,9 +359,13 @@ GoogleActions = {
await drive.files.update({ await drive.files.update({
fileId : brew.googleId, fileId : brew.googleId,
resource : { modifiedTime : brew.updatedAt, resource : {
properties : { views : brew.views + 1, modifiedTime : brew.updatedAt,
lastViewed : new Date() } } properties : {
views : brew.views + 1,
lastViewed : new Date()
}
}
}) })
.catch((err)=>{ .catch((err)=>{
console.log('Error updating Google views'); console.log('Error updating Google views');