Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set file size to be "None"
Browse files Browse the repository at this point in the history
This prevents a misleading file size of 0 bytes being displayed in
girder.

This is working without issues so far.

Signed-off-by: Patrick Avery <patrick.avery@kitware.com>
psavery committed Jan 22, 2024
1 parent 305a705 commit c23b4a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -356,7 +356,7 @@ def importData(self, parent, parentType, params, progress, user, **kwargs):
reuseExisting=True,
assetstore=self.assetstore,
mimeType='application/dicom',
size=0,
size=None,
saveFile=False,
)
file['dicom_uids'] = {

0 comments on commit c23b4a0

Please sign in to comment.