We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c3a01e commit 18a9816Copy full SHA for 18a9816
packages/nextcloud/lib/src/webdav/file.dart
@@ -98,7 +98,7 @@ class WebDavFile {
98
late final String name = path.name;
99
100
/// Whether the file is hidden.
101
- late final bool isHidden = name.startsWith('.');
+ late final bool isHidden = props.ncHidden ?? name.startsWith('.');
102
103
/// Whether the file is a directory
104
late final bool isDirectory = (isCollection ?? false) || path.isDirectory;
0 commit comments