Mercurial > hg > orthanc-object-storage
changeset 224:5561be9e9fd4 default tip
fix
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Thu, 30 Oct 2025 09:41:11 +0100 |
| parents | 026b2c8957c7 |
| children | |
| files | Common/FileSystemStorage.cpp |
| diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Common/FileSystemStorage.cpp Wed Oct 15 10:36:47 2025 +0200 +++ b/Common/FileSystemStorage.cpp Thu Oct 30 09:41:11 2025 +0100 @@ -156,6 +156,5 @@ fs::path path = BaseStorage::GetOrthancFileSystemPath(uuid, fileSystemRootPath_); - return Orthanc::SystemToolbox::IsExistingFile(path.string()); + return Orthanc::SystemToolbox::IsRegularFile(path.string()); } -
