Skip to content

Commit

Permalink
feat: sse always use progress
Browse files Browse the repository at this point in the history
  • Loading branch information
wzhudev committed Jun 12, 2024
1 parent add7837 commit 9ba3189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/network/src/services/http/http.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export class HTTPService extends Disposable {
headers,
params,
withCredentials: options?.withCredentials ?? false,
reportProgress: options?.reportProgress ?? false,
reportProgress: true,
responseType: options?.responseType ?? 'json',
body: (['GET', 'DELETE'].includes(method)) ? undefined : (options as IPostRequestParams)?.body,
});
Expand Down

0 comments on commit 9ba3189

Please sign in to comment.