Skip to content

Commit b381a56

Browse files
authored
Update index.js
fix syntax error in firebase functions log
1 parent 176fc16 commit b381a56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase/functions/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ exports.resultCounter = functions.database.ref('/v2/results/{projectId}/{groupId
7171
const contributionTime = userContributionRef.child(context.params.groupId).once('value')
7272
.then((dataSnapshot) => {
7373
if (dataSnapshot.exists()) {
74-
console.log('group contribution exists already. user: '+context.params.userId' project: '+context.params.projectId+' group: '+context.params.groupId)
74+
console.log('group contribution exists already. user: '+context.params.userId+' project: '+context.params.projectId+' group: '+context.params.groupId)
7575
return null
7676
}
7777
else {

0 commit comments

Comments
 (0)