Skip to content

Commit f1ec3b2

Browse files
committed
Fix build
1 parent f2cc947 commit f1ec3b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/http/fetch/src/fetchRequestAdapter.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,8 @@ export class FetchRequestAdapter implements RequestAdapter {
359359
});
360360
};
361361
public enableBackingStore = (backingStoreFactory?: BackingStoreFactory): void => {
362-
this.parseNodeFactory = enableBackingStoreForParseNodeFactory(this.parseNodeFactory);
363-
this.serializationWriterFactory = enableBackingStoreForSerializationWriterFactory(this.serializationWriterFactory);
362+
this.parseNodeFactory = enableBackingStoreForParseNodeFactory(this.parseNodeFactory, this.parseNodeFactory);
363+
this.serializationWriterFactory = enableBackingStoreForSerializationWriterFactory(this.serializationWriterFactory, this.serializationWriterFactory);
364364
if (!this.serializationWriterFactory || !this.parseNodeFactory) throw new Error("unable to enable backing store");
365365
if (backingStoreFactory) {
366366
BackingStoreFactorySingleton.instance = backingStoreFactory;

0 commit comments

Comments
 (0)