removeExtendedAttribute never called #2
Closed
Milestone
Comments
|
Thanks for the fix. It will be part of the 2.3.1 maintenance release. https://github.com/osxfuse/sdk/commit/30f4020b69ada96466f479ee845a71ff38d96938 |
Closed
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];
}
The text was updated successfully, but these errors were encountered: