This commit is contained in:
Manav Rathi
2024-09-23 13:30:39 +05:30
parent 76e4d535b4
commit 0b0d8bd026
4 changed files with 3 additions and 3 deletions

View File

@@ -3,8 +3,8 @@ import { apiURL } from "@/base/origins";
import { EnteFile } from "@/new/photos/types/file";
import { CustomError, handleUploadError } from "@ente/shared/error";
import HTTPService from "@ente/shared/network/HTTPService";
import { MultipartUploadURLs, UploadFile, UploadURL } from "./upload-service";
import { retryHTTPCall } from "./uploadHttpClient";
import { MultipartUploadURLs, UploadFile, UploadURL } from "./uploadService";
const MAX_URL_REQUESTS = 50;

View File

@@ -5,7 +5,7 @@ import { wait } from "@/utils/promise";
import { CustomError, handleUploadError } from "@ente/shared/error";
import HTTPService from "@ente/shared/network/HTTPService";
import { getToken } from "@ente/shared/storage/localStorage/helpers";
import { MultipartUploadURLs, UploadFile, UploadURL } from "./uploadService";
import { MultipartUploadURLs, UploadFile, UploadURL } from "./upload-service";
const MAX_URL_REQUESTS = 50;

View File

@@ -39,7 +39,7 @@ import UploadService, {
uploadItemFileName,
uploadItemSize,
uploader,
} from "./uploadService";
} from "./upload-service";
export type FileID = number;