We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 176fc16 commit b381a56Copy full SHA for b381a56
firebase/functions/index.js
@@ -71,7 +71,7 @@ exports.resultCounter = functions.database.ref('/v2/results/{projectId}/{groupId
71
const contributionTime = userContributionRef.child(context.params.groupId).once('value')
72
.then((dataSnapshot) => {
73
if (dataSnapshot.exists()) {
74
- console.log('group contribution exists already. user: '+context.params.userId' project: '+context.params.projectId+' group: '+context.params.groupId)
+ console.log('group contribution exists already. user: '+context.params.userId+' project: '+context.params.projectId+' group: '+context.params.groupId)
75
return null
76
}
77
else {
0 commit comments