I have this code, which is updating the number of likes on the movie. But the first update is not recognized. So if I click the button 5 times. On firestore is updated only 4.
async liked() {
await db.collection('movies').doc(this.movie.id).update({
likes: this.movie.likes++
});
},
I any more code needed I will update the question.