Clean Filenames for Windows

Fixes #391
This commit is contained in:
2025-09-18 00:51:34 +02:00
parent 5af1605c5b
commit 55d6b46507
12 changed files with 53 additions and 43 deletions

View File

@@ -36,7 +36,7 @@ public class Chapter : Identifiable, IComparable<Chapter>
this.VolumeNumber = volumeNumber;
this.ChapterNumber = chapterNumber;
this.Title = title;
this.FileName = GetArchiveFilePath();
this.FileName = GetArchiveFilePath().CleanNameForWindows();
this.Downloaded = false;
this.MangaConnectorIds = [];
}