Commit 2d872c4d authored by nanahira's avatar nanahira

fix

parent d128cf85
Pipeline #5437 passed with stages
in 4 minutes and 35 seconds
......@@ -71,8 +71,7 @@ export class AppService extends ConsoleLogger {
this.http.post<ReturnMessage<string>>(`${this.jsdUrl}/upload`, form, {
responseType: 'json',
headers: form.getHeaders(),
maxContentLength: Infinity,
maxBodyLength: Infinity,
maxBodyLength: 100 * 1024 ** 3,
}),
);
return new ReturnMessageDto(201, 'success', data.data).toException();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment