File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
android/src/main/kotlin/io/lakscastro/sharedstorage/storageaccessframework/lib
example/lib/screens/folder_files Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ fun traverseDirectoryEntries(
201201 while (cursor.moveToNext()) {
202202 val data = mutableMapOf<String , Any >()
203203
204- for (column in columns ) {
204+ for (column in projection ) {
205205 data[column] = cursorHandlerOf(typeOfColumn(column)!! )(
206206 cursor,
207207 cursor.getColumnIndexOrThrow(column)
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ class _FolderFileListState extends State<FolderFileList> {
159159 DocumentFileColumn .displayName,
160160 DocumentFileColumn .size,
161161 DocumentFileColumn .lastModified,
162- DocumentFileColumn .id,
162+ // DocumentFileColumn.id,
163163 DocumentFileColumn .mimeType,
164164 ];
165165
You can’t perform that action at this time.
0 commit comments