Skip to content

Commit 44d2645

Browse files
authored
Merge pull request #62 from pozil/release-v5.2.3
build: release v5.2.3
2 parents 799fff0 + 535a08f commit 44d2645

File tree

5 files changed

+217
-198
lines changed

5 files changed

+217
-198
lines changed

dist/client.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,7 @@ var PubSubApiClient = class {
12741274
if (!schema) {
12751275
try {
12761276
schema = await this.#fetchEventSchemaFromIdWithClient(schemaId);
1277-
this.#schemas.set(schema.schema, schema);
1277+
this.#schemas.set(schema.id, schema);
12781278
} catch (error) {
12791279
throw new Error(`Failed to load schema with ID ${schemaId}`, {
12801280
cause: error

dist/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1241,7 +1241,7 @@ var PubSubApiClient = class {
12411241
if (!schema) {
12421242
try {
12431243
schema = await this.#fetchEventSchemaFromIdWithClient(schemaId);
1244-
this.#schemas.set(schema.schema, schema);
1244+
this.#schemas.set(schema.id, schema);
12451245
} catch (error) {
12461246
throw new Error(`Failed to load schema with ID ${schemaId}`, {
12471247
cause: error

0 commit comments

Comments
 (0)