Skip to content

Commit d0affe6

Browse files
committed
Fix minor bug
1 parent e73827d commit d0affe6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cls/SourceControl/Git/Settings.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ Method OnAfterConfigure() As %Boolean
498498
$$$ThrowOnError(##class(SourceControl.Git.Utils).Commit(##class(SourceControl.Git.Settings.Document).#INTERNALNAME,"initial commit"))
499499
}
500500
// Set remote to remove token
501-
do ##class(SourceControl.Git.Utils).SetConfiguredRemote(remote)
501+
do ##class(SourceControl.Git.Utils).SetConfiguredRemote(..gitRemoteURL)
502502
}
503503
}
504504
}

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ $Get(@..#Storage@("settings","decomposeProdAllowIDE"), 0)
8484

8585
ClassMethod GitRemoteType() As %String [ CodeMode = expression ]
8686
{
87-
$Get(@..#Storage@("settings","gitRemoteType"), 0)
87+
$Get(@..#Storage@("settings","gitRemoteType"), "")
8888
}
8989

9090
ClassMethod GitRemoteURL() As %String [ CodeMode = expression ]

0 commit comments

Comments
 (0)