Skip to content

Commit edb0260

Browse files
committed
Fix merge conflict.
1 parent c9dd6be commit edb0260

File tree

1 file changed

+1
-1
lines changed
  • packages/service-core/src/storage

1 file changed

+1
-1
lines changed

packages/service-core/src/storage/bson.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const serializeLookup = (lookup: SqliteJsonValue[]) => {
4141
};
4242

4343
export const getLookupBucketDefinitionName = (lookup: bson.Binary) => {
44-
const parsed = bson.deserialize(lookup.buffer, BSON_DESERIALIZE_OPTIONS).l as SqliteJsonValue[];
44+
const parsed = bson.deserialize(lookup.buffer, BSON_DESERIALIZE_INTERNAL_OPTIONS).l as SqliteJsonValue[];
4545
return parsed[0] as string;
4646
};
4747

0 commit comments

Comments
 (0)