This commit is contained in:
sxyazi 2025-03-11 12:51:27 +08:00
parent 9707ec1b95
commit e6534b07c9
No known key found for this signature in database

View file

@ -32,10 +32,10 @@ impl ChaKind {
use windows_sys::Win32::Storage::FileSystem::{FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_SYSTEM};
if _meta.file_attributes() & FILE_ATTRIBUTE_HIDDEN != 0 {
attached |= Self::HIDDEN;
me |= Self::HIDDEN;
}
if _meta.file_attributes() & FILE_ATTRIBUTE_SYSTEM != 0 {
attached |= Self::SYSTEM;
me |= Self::SYSTEM;
}
}