monkey-front-core 0.0.200 → 0.0.201
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.
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-header.interceptor.mjs +2 -2
- package/fesm2015/monkey-front-core.mjs +1 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +1 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.201.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.200.tgz +0 -0
|
@@ -4693,7 +4693,7 @@ class MonkeyEcxHttpConfigHeaderInterceptor {
|
|
|
4693
4693
|
.pipe(first((val) => {
|
|
4694
4694
|
console.log('====== 4');
|
|
4695
4695
|
console.log(val);
|
|
4696
|
-
return !!val;
|
|
4696
|
+
return !!val && JSON.stringify(val) !== '{}';
|
|
4697
4697
|
}))
|
|
4698
4698
|
.toPromise();
|
|
4699
4699
|
console.log('====== 5');
|