This commit is contained in:
Paul Schneider 2025-11-16 15:53:13 +00:00
commit bcadc733bb
6 changed files with 15 additions and 18 deletions

View file

@ -57,7 +57,7 @@ namespace Yavsc.ApiControllers
List<FileReceivedInfo> received = new List<FileReceivedInfo>();
InvalidPathException pathex = null;
try {
destDir = User.InitPostToFileSystem(subdir);
destDir = User.EnsureDestinationDirectory(subdir);
} catch (InvalidPathException ex) {
pathex = ex;
}