http-request-manager 18.15.14 → 18.15.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6434,7 +6434,7 @@ class QueryParamsTrackerService {
|
|
|
6434
6434
|
}
|
|
6435
6435
|
checkRequestOptions(requestOptions = [], options = {}) {
|
|
6436
6436
|
this.ensureStateRestored();
|
|
6437
|
-
return this.ready$.pipe(take(1), map(() => {
|
|
6437
|
+
return this.ready$.pipe(filter(ready => ready === true), take(1), map(() => {
|
|
6438
6438
|
const normalized = this.normalizeRequestOptions(requestOptions);
|
|
6439
6439
|
if (!normalized.pathKey)
|
|
6440
6440
|
return false;
|