Skip to content

Commit 7c0bd4e

Browse files
committed
1. 修复super.onLoadBackground()方法执行两次的问题
2. 发布v0.0.5_alpha
1 parent bebaaef commit 7c0bd4e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727

2828
```
29-
implementation 'cn.imlibo:FilePicker:v0.0.4_alpha'
29+
implementation 'cn.imlibo:FilePicker:v0.0.5_alpha'
3030
```
3131

3232

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ext {
3737
userOrg = 'libo'
3838
groupId = 'cn.imlibo'
3939
uploadName = 'FilePicker'
40-
publishVersion = 'v0.0.4_alpha'
40+
publishVersion = 'v0.0.5_alpha'
4141
desc = 'Android文件选择器、图片选择器、MIMEType分类选择器'
4242
website = 'https://github.com/imLibo/FilePicker'
4343
licences = ['MIT']

filepicker/src/main/java/com/ess/filepicker/loader/EssMimeTypeLoader.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,10 @@ public Cursor loadInBackground() {
102102
essFileList.add(essFile);
103103
}
104104
}
105+
data.moveToFirst();
105106
}
106-
return super.loadInBackground();
107+
108+
return data;
107109
}
108110

109111

0 commit comments

Comments
 (0)