Merge branch 'main' into cities
This commit is contained in:
commit
12b68b9f2c
2 changed files with 10 additions and 3 deletions
|
@ -391,7 +391,7 @@ export default function Uploader(props: Props) {
|
|||
) => {
|
||||
try {
|
||||
addLogLine(
|
||||
`upload file to an existing collection - "${collection.name}"`
|
||||
`upload file to an existing collection name:${collection.name}, collectionID:${collection.id}`
|
||||
);
|
||||
await preCollectionCreationAction();
|
||||
const filesWithCollectionToUpload: FileWithCollection[] =
|
||||
|
|
|
@ -52,6 +52,7 @@ import {
|
|||
} from 'utils/export';
|
||||
import exportService from 'services/export';
|
||||
import { CollectionDownloadProgressAttributes } from 'components/Collections/CollectionDownloadProgress';
|
||||
import { addLogLine } from '@ente/shared/logging';
|
||||
|
||||
export enum COLLECTION_OPS_TYPE {
|
||||
ADD,
|
||||
|
@ -521,7 +522,8 @@ export function isValidReplacementAlbum(
|
|||
return (
|
||||
collection.name === wantedCollectionName &&
|
||||
(collection.type === CollectionType.album ||
|
||||
collection.type === CollectionType.folder) &&
|
||||
collection.type === CollectionType.folder ||
|
||||
collection.type === CollectionType.uncategorized) &&
|
||||
!isHiddenCollection(collection) &&
|
||||
!isQuickLinkCollection(collection) &&
|
||||
!isIncomingShare(collection, user)
|
||||
|
@ -610,8 +612,13 @@ export const getOrCreateAlbum = async (
|
|||
}
|
||||
for (const collection of existingCollections) {
|
||||
if (isValidReplacementAlbum(collection, user, albumName)) {
|
||||
addLogLine(
|
||||
`Found existing album ${albumName} with id ${collection.id}`
|
||||
);
|
||||
return collection;
|
||||
}
|
||||
}
|
||||
return createAlbum(albumName);
|
||||
const album = await createAlbum(albumName);
|
||||
addLogLine(`Created new album ${albumName} with id ${album.id}`);
|
||||
return album;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue