Skip to content

Commit

Permalink
fix(generic): request params error
Browse files Browse the repository at this point in the history
  • Loading branch information
ElonH committed May 13, 2020
1 parent e97aca4 commit 681fcb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/@dataflow/generic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export abstract class Generic {
this.cacheSupport &&
Generic.cacheData.hasOwnProperty(this.cachePath),
of(Generic.cacheData[this.cachePath]),
this._request(data).pipe(
this._request([data, preErrors]).pipe(
map((rsp): DataFlowNode => [rsp, []]),
catchError((err): DataFlowNode => [null, [err]]),
tap((x: DataFlowNode) => {
Expand Down

0 comments on commit 681fcb4

Please sign in to comment.