Skip to content

Commit 59ec8a6

Browse files
authored
Merge pull request #321 from intersystems/addCSPApplication
Add CSP application to Git
2 parents 2f47a5e + 9dbba42 commit 59ec8a6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
- Display other developer's username in Web UI's Workspace when hovering over the name of a file they changed (#304)
1919
- Incremental load PullEventHandler now handles file deletion (#299)
2020
- Incremental load PullEventHandler no longer returns a Success Status if an error was thrown during the pull process (#300)
21+
- CSP applications can now be added to Git successfully (#308)
2122

2223
## [2.3.0] - 2023-12-06
2324

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ ClassMethod NormalizeInternalName(ByRef name As %String) As %String
985985

986986
set type = ..Type(.name)
987987

988-
if $extract(name) '= "/" {
988+
if ($extract(name) '= "/") && (type'="csp") {
989989
quit $piece(name,".",1,*-1)_"."_$zconvert($piece(name,".",*),"U")
990990
}
991991

0 commit comments

Comments
 (0)