Skip to content

Commit 57bdc16

Browse files
committed
Fix hl7 issues
1 parent 3b84d4f commit 57bdc16

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
- Changed prompts in configure from 0/1 to no/yes (#461)
1717
- Added warnings when user is using incompatible git version (#488)
1818
- Fixed the back button navigation between WebUI and Settings page (#361)
19+
- Fixed issues with HL7 file extension inconsistencies (#495)
1920

2021
## [2.5.0] - 2024-09-24
2122

cls/SourceControl/Git/Utils.cls

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1296,6 +1296,9 @@ ClassMethod ImportItem(InternalName As %String, force As %Boolean = 0, verbose A
12961296
if ..Type(InternalName) = "prj" {
12971297
set sc = $$$ADDSC(sc, ..FixProjectCspReferences(InternalName))
12981298
}
1299+
if ..Type(InternalName) = "hl7" {
1300+
set sc = $system.OBJ.Load(..NormalizeExtension(filename),$Select(compile:"ck-l",1:"-l-d"))
1301+
}
12991302
write !, InternalName," has been imported from ", filename
13001303
} else {
13011304
write !, "ERROR importing" ,InternalName, !

0 commit comments

Comments
 (0)