We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems House Cleaner do not expand subfolders anymore, we have to check where this bug comes from
The text was updated successfully, but these errors were encountered:
With commit 485cdcc we decided to limit display to directories only, as we encounter some issues displaying huge amount of files.
We switched from PHP function scandir() to glob(). However glob() function does not return . and .. values, so we missed a conditional check.
scandir()
glob()
.
..
There was no impact for folders with more than 2 subfolders, but on a small platform, some elements may not be shown.
Sorry, something went wrong.
Fix #120
13ac6fc
Remove old `scandir()` conditional check
Fixed with 13ac6fc
vmdude
No branches or pull requests
It seems House Cleaner do not expand subfolders anymore, we have to check where this bug comes from
The text was updated successfully, but these errors were encountered: