mirror of
https://github.com/cloudreve/frontend.git
synced 2025-12-25 19:52:48 +00:00
fix(oss): disable RSA min key size check for OSS callback (#3038)
This commit is contained in:
parent
9b88ecd4d8
commit
1b1f9f4c8e
|
|
@ -4,8 +4,6 @@ import i18n from "../i18n.ts";
|
|||
import {
|
||||
AdminListGroupResponse,
|
||||
AdminListService,
|
||||
ListShareResponse as AdminListShareResponse,
|
||||
StoragePolicy as AdminStoragePolicy,
|
||||
BatchIDService,
|
||||
CleanupTaskService,
|
||||
CreateStoragePolicyCorsService,
|
||||
|
|
@ -20,6 +18,8 @@ import {
|
|||
ListEntityResponse,
|
||||
ListFileResponse,
|
||||
ListNodeResponse,
|
||||
ListPaymentResponse as AdminListPaymentResponse,
|
||||
ListShareResponse as AdminListShareResponse,
|
||||
ListStoragePolicyResponse,
|
||||
ListTaskResponse,
|
||||
ListUserResponse,
|
||||
|
|
@ -28,6 +28,7 @@ import {
|
|||
QueueMetric,
|
||||
SetSettingService,
|
||||
Share as ShareEnt,
|
||||
StoragePolicy as AdminStoragePolicy,
|
||||
Task,
|
||||
TestNodeDownloaderService,
|
||||
TestNodeService,
|
||||
|
|
@ -724,7 +725,6 @@ export function sendUploadChunk(
|
|||
): ThunkResponse<UploadCredential> {
|
||||
return async (dispatch, _getState) => {
|
||||
const streaming = chunk instanceof EncryptedBlob;
|
||||
|
||||
return await dispatch(
|
||||
send(
|
||||
`/file/upload/${sessionID}/${index}`,
|
||||
|
|
|
|||
Loading…
Reference in New Issue