Release v1.6.14

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-04 15:30:49 +01:00
co-authored by Claude Opus 4.6
parent d5638b922d
commit 4e8e8eba66
3 changed files with 13 additions and 1 deletions
+3
View File
@@ -2088,6 +2088,7 @@ export class DownloadManager extends EventEmitter {
}
const videoFiles = await this.collectVideoFiles(extractDir);
logger.info(`Auto-Rename: ${videoFiles.length} Video-Dateien gefunden in ${extractDir}`);
let renamed = 0;
// Collect additional folder candidates from package metadata (outputDir, item filenames)
@@ -2135,6 +2136,7 @@ export class DownloadManager extends EventEmitter {
forceEpisodeForSeasonFolder: true
});
if (!targetBaseName) {
logger.info(`Auto-Rename: kein Zielname für ${sourceName} (folders=${folderCandidates.join(", ")})`);
continue;
}
@@ -2171,6 +2173,7 @@ export class DownloadManager extends EventEmitter {
try {
await this.renamePathWithExdevFallback(sourcePath, targetPath);
logger.info(`Auto-Rename: ${sourceName} -> ${path.basename(targetPath)}`);
renamed += 1;
} catch (error) {
if (this.isPathLengthRenameError(error)) {