mirror of
https://github.com/ish-app/ish.git
synced 2026-02-01 14:32:26 +00:00
Fix file provider enumeration
This commit is contained in:
parent
6c92c51f55
commit
9ae3d8e0e9
@ -3,3 +3,4 @@
|
||||
## Build 33 (unreleased)
|
||||
### Fixed
|
||||
- Segfault while doing large download with pip, due to returning NULL from successful mremap. ffmpeg also had this problem.
|
||||
- File provider now shows files like it's supposed to.
|
||||
|
||||
@ -62,7 +62,7 @@
|
||||
[observer finishEnumeratingWithError:[self errorFromCode:err]];
|
||||
return;
|
||||
}
|
||||
if (err == 1)
|
||||
if (err == 0)
|
||||
break;
|
||||
if (strcmp(dirent.name, ".") == 0 || strcmp(dirent.name, "..") == 0)
|
||||
continue;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user