fix: automatic media location migration without internal assets (#20489)

This commit is contained in:
Daniel Dietzler
2025-08-01 00:58:35 +02:00
committed by GitHub
parent c3263e50fc
commit 3cdc6844a1
4 changed files with 8 additions and 44 deletions

View File

@@ -86,12 +86,7 @@ export class CliService extends BaseService {
}
for (const asset of assets) {
paths.push(
asset.originalPath,
asset.sidecarPath,
asset.encodedVideoPath,
...asset.files.map((file) => file.path),
);
paths.push(asset.path);
}
return paths.filter(Boolean) as string[];