Skip to content

Commit 8c01ebf

Browse files
committed
Fix JSON parsing.
1 parent 7331c91 commit 8c01ebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/src/com/tns/V8Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static Object[] fromPackageJSON(File appDir)
3131
}
3232
if(androidObject.has(CodeCacheKey))
3333
{
34-
result[1] = androidObject.getString(CodeCacheKey);
34+
result[1] = Boolean.parseBoolean(androidObject.getString(CodeCacheKey));
3535
}
3636
}
3737
}

0 commit comments

Comments
 (0)