Skip to content

Commit

Permalink
Fix for UC vrs and version update (JuliaHealth#92)
Browse files Browse the repository at this point in the history
* Quick fix for UC vrs

* Bump version to 0.12 for future release
  • Loading branch information
notZaki authored Jul 27, 2024
1 parent d37b427 commit 0ba5d2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "DICOM"
uuid = "a26e6606-dd52-5f6a-a97f-4f611373d757"
version = "0.11.0"
version = "0.12.0"

[compat]
julia = "1.6"
Expand Down
2 changes: 1 addition & 1 deletion src/DICOM.jl
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ function determine_vr_and_lentype(st, gelt, is_explicit, aux_vr)
lentype = UInt32
if is_explicit && !always_implicit(grp, elt)
vr = String(read!(st, Array{UInt8}(undef, 2)))
if vr in ("OB", "OW", "OF", "SQ", "UT", "UN")
if vr in ("OB", "OW", "OF", "SQ", "UT", "UN", "UC")
skip(st, 2)
else
lentype = UInt16
Expand Down

0 comments on commit 0ba5d2c

Please sign in to comment.