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 bac7d7f commit 1aeb0aeCopy full SHA for 1aeb0ae
firestore/extend-with-functions/functions/index.js
@@ -115,7 +115,9 @@ function writingData() {
115
116
// We'll only update if the name has changed.
117
// This is crucial to prevent infinite loops.
118
- if (data.name == previousData.name) return null;
+ if (data.name == previousData.name) {
119
+ return null;
120
+ }
121
122
// Retrieve the current count of name changes
123
let count = data.name_change_count;
0 commit comments