aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/index.ts b/src/server/index.ts
index a12751fe3..0952e20aa 100644
--- a/src/server/index.ts
+++ b/src/server/index.ts
@@ -429,8 +429,8 @@ function UpdateField(socket: Socket, diff: Diff) {
Object.values(suffixMap).forEach(suf => update[key + getSuffix(suf)] = { set: null });
let term = ToSearchTerm(val);
if (term !== undefined) {
- // let { suffix, value } = term;
- // update[key + suffix] = { set: value };
+ let { suffix, value } = term;
+ update[key + suffix] = { set: value };
}
}
if (dynfield) {