From e60add7411032441272543e71407420266d59ff1 Mon Sep 17 00:00:00 2001 From: Carlos Fuentes Date: Mon, 13 May 2024 12:13:44 +0200 Subject: [PATCH] fix: typo Co-authored-by: Robert Nagy --- lib/interceptor/dump.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/interceptor/dump.js b/lib/interceptor/dump.js index 4511b1df432..ee8a9281b87 100644 --- a/lib/interceptor/dump.js +++ b/lib/interceptor/dump.js @@ -83,7 +83,7 @@ class DumpHandler extends DecoratorHandler { this.#dumped = true if (this.#aborted) { - this.#handler.onError(this.reason) + this.#handler.onError(this.#reason) } else { this.#handler.onComplete([]) }