Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upremoveExtendedAttribute never called #2
Milestone
Comments
This comment has been minimized.
This comment has been minimized.
|
Thanks for the fix. It will be part of the 2.3.1 maintenance release. https://github.com/osxfuse/sdk/commit/30f4020b69ada96466f479ee845a71ff38d96938 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the file GMUserFileSystem.m there on line 1589 the code checks for the wrong selector before trying to removeExtendedAttributes which causes it to never be called. Updated code below:
if ([delegate respondsToSelector:@selector(removeExtendedAttribute:ofItemAtPath:error:)]) {
return [delegate removeExtendedAttribute:name
ofItemAtPath:path
error:error];
}