Skip to content

Commit 563cfeb

Browse files
authored
Fix crash when setNull an image in a BC with Download Content in True (#112)
_Crash al asignar un Image Issue 76584
1 parent 53c7373 commit 563cfeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/src/main/java/com/genexus/db/driver/GXPreparedStatement.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1186,8 +1186,8 @@ else if(blobFiles.length < index)
11861186
// add token if necesary?
11871187
//Boolean addToken = (fileName.compareTo(GXDbFile.removeTokenFromFileName(fileName)) == 0);
11881188

1189-
if ( (fileName.toLowerCase().startsWith("http://") || fileName.toLowerCase().startsWith("https://"))
1190-
&& isLocalFile || downloadContent)
1189+
if ( (fileName.toLowerCase().startsWith("http://") || fileName.toLowerCase().startsWith("https://"))
1190+
&& (isLocalFile || downloadContent))
11911191
{
11921192
URL fileURL = new URL(fileName);
11931193

0 commit comments

Comments
 (0)