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 c9dd6be commit edb0260Copy full SHA for edb0260
packages/service-core/src/storage/bson.ts
@@ -41,7 +41,7 @@ export const serializeLookup = (lookup: SqliteJsonValue[]) => {
41
};
42
43
export const getLookupBucketDefinitionName = (lookup: bson.Binary) => {
44
- const parsed = bson.deserialize(lookup.buffer, BSON_DESERIALIZE_OPTIONS).l as SqliteJsonValue[];
+ const parsed = bson.deserialize(lookup.buffer, BSON_DESERIALIZE_INTERNAL_OPTIONS).l as SqliteJsonValue[];
45
return parsed[0] as string;
46
47
0 commit comments