We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9d7883 commit 9f6d042Copy full SHA for 9f6d042
java/src/main/java/com/genexus/GXutil.java
@@ -1362,7 +1362,7 @@ public static String cutUploadPrefix(String value)
1362
1363
//hack para salvar el caso de gxooflineeventreplicator que llegan los path de los blobs sin \ porque fueron sacadas por el FromJsonString
1364
String blobPath = com.genexus.Preferences.getDefaultPreferences().getProperty("CS_BLOB_PATH", "");
1365
- if(uploadValue.indexOf(':') == 1 && uploadValue.indexOf(blobPath) != -1 )
+ if(uploadValue.indexOf(':') == 1 && uploadValue.indexOf(File.separator + blobPath) != -1 )
1366
{
1367
uploadValue = uploadValue.substring(uploadValue.indexOf(blobPath) + blobPath.length());
1368
uploadValue = blobPath + "\\" + uploadValue;
0 commit comments