mirror of
https://github.com/immich-app/immich.git
synced 2025-04-04 09:49:43 +02:00
fix(server): offline assets don't restore when coming back online (#13087)
This commit is contained in:
parent
49486f2d26
commit
d46e50213a
@ -140,9 +140,15 @@ export class LibraryService extends BaseService {
|
|||||||
onAdd: (path) => {
|
onAdd: (path) => {
|
||||||
const handler = async () => {
|
const handler = async () => {
|
||||||
this.logger.debug(`File add event received for ${path} in library ${library.id}}`);
|
this.logger.debug(`File add event received for ${path} in library ${library.id}}`);
|
||||||
|
if (matcher(path)) {
|
||||||
|
const asset = await this.assetRepository.getByLibraryIdAndOriginalPath(library.id, path);
|
||||||
|
if (asset) {
|
||||||
|
await this.syncAssets(library, [asset.id]);
|
||||||
|
}
|
||||||
if (matcher(path)) {
|
if (matcher(path)) {
|
||||||
await this.syncFiles(library, [path]);
|
await this.syncFiles(library, [path]);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
return handlePromiseError(handler(), this.logger);
|
return handlePromiseError(handler(), this.logger);
|
||||||
},
|
},
|
||||||
@ -604,7 +610,7 @@ export class LibraryService extends BaseService {
|
|||||||
this.logger.log(`Scanning library ${library.id} for removed assets`);
|
this.logger.log(`Scanning library ${library.id} for removed assets`);
|
||||||
|
|
||||||
const onlineAssets = usePagination(JOBS_LIBRARY_PAGINATION_SIZE, (pagination) =>
|
const onlineAssets = usePagination(JOBS_LIBRARY_PAGINATION_SIZE, (pagination) =>
|
||||||
this.assetRepository.getAll(pagination, { libraryId: job.id }),
|
this.assetRepository.getAll(pagination, { libraryId: job.id, withDeleted: true }),
|
||||||
);
|
);
|
||||||
|
|
||||||
let assetCount = 0;
|
let assetCount = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user