Skip to content

Commit 5f67027

Browse files
claudiamurialdoClaudia Beatriz Murialdo Garrone
andauthored
Fixed an issue where the path was being constructed without the necessary path separator, introduced by changes in PR #1052 (#1072)
Co-authored-by: Claudia Beatriz Murialdo Garrone <c.murialdo@globant.com>
1 parent 4c87d15 commit 5f67027

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/dotnetframework/GxClasses/Core/GXApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3840,7 +3840,7 @@ Hashtable Images
38403840
string imagePath = parts[4];
38413841
string intExt = parts[3];
38423842
if (intExt[0] != 'E' && intExt[0] != 'e' && !Path.IsPathRooted(imagePath) && !imagePath.ToLower().StartsWith("http:"))
3843-
imagePath = imgDir + KBPrefix + "Resources/" + imagePath;
3843+
imagePath = Path.Combine(imgDir, KBPrefix + "Resources", imagePath);
38443844
string parts12 = '_' + parts[1] + '_' + parts[2];
38453845

38463846
m_images[KBPrefix + parts[0] + parts12] = imagePath;

0 commit comments

Comments
 (0)