-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
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
Repairing BASE64 encoded vCard version 3 #193
Conversation
Signed-off-by: Weby <info@geeq.ch>
Hum, this would require also a repair step in nextcloud/server, right? |
@evert on the upstream issue (sabre-io/vobject#415) commented that sabre/dav calls the validate function with the repair flag by default. There shouldn't be any more step needed in nextcloud, assuming that repair flag wasn't removed. |
After "blindly" applying the patch to Nextcloud's Property.php, it seems to work flawlessy with my device, which seems to imply that the "repair" option is called by nextcloud by default as well -> nothing more to do than patch. |
I will try beta 16 and report back here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Thanks! |
Drone is not enabled here @MorrisJobke ? |
Correct, because 3rdparty without an update to the server code is quite meaningless. Thus a PR to server is needed to check against our code base. |
Ideally we could get icewind1991/SearchDAV#9 |
done |
@icewind1991 you used 4.0.x, we would need 4.2.x 🙈 ❤️ |
sabre/dav only goes up to 4.0, it's sabre/vobject is 4.2 |
Ah sorry!! All good then! |
Fix nextcloud/server#3366
Simple re-application of the same patch as upstream
sabre-io/vobject#441