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 d501912 commit dbffb15Copy full SHA for dbffb15
core/runtime/android/widgets/src/main/java/org/hapjs/widgets/view/NestedWebView.java
@@ -1340,9 +1340,14 @@ && getComponent().getCallback() != null) {
1340
mCacheVideoFile = null;
1341
}
1342
result = tmpResults;
1343
+ } else {
1344
+ //photo or video sometimes go here
1345
+ if ((mCachePhotoFile == null || !mCachePhotoFile.exists() || mCachePhotoFile.length() == 0) && (mCacheVideoFile == null || !mCacheVideoFile.exists() || mCacheVideoFile.length() == 0)) {
1346
+ //not check photo or video
1347
+ result = blockPrivatePaths(result);
1348
+ }
1349
1350
- result = blockPrivatePaths(result);
1351
if (null != result && result.length > 0 && result[0] == null) {
1352
Log.e(
1353
TAG,
0 commit comments