Fix ignored throttle parameters (#4663).

This commit is contained in:
Richard Moore 2024-03-26 16:09:37 -04:00
parent ad5f1c5fc7
commit 12772e9498

@ -667,6 +667,8 @@ export class FetchRequest implements Iterable<[ key: string, value: string ]> {
clone.#process = this.#process;
clone.#retry = this.#retry;
clone.#throttle = Object.assign({ }, this.#throttle);
clone.#getUrlFunc = this.#getUrlFunc;
return clone;