um finished

This commit is contained in:
Manav Rathi 2024-04-19 19:50:27 +05:30
parent c034c5cc70
commit 766dd2d85d
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -511,7 +511,7 @@ class UploadManager {
}
private async updateElectronRemainingFiles(
fileWithCollection: FileWithCollection,
fileWithCollection: FileWithCollection2,
) {
if (isElectron()) {
this.remainingFiles = this.remainingFiles.filter(

View file

@ -118,8 +118,8 @@ export function segregateMetadataAndMediaFiles2(
}
export function areFileWithCollectionsSame(
firstFile: FileWithCollection,
secondFile: FileWithCollection,
firstFile: FileWithCollection2,
secondFile: FileWithCollection2,
): boolean {
return firstFile.localID === secondFile.localID;
}