Giter VIP home page Giter VIP logo

Comments (3)

LeJeko avatar LeJeko commented on June 30, 2024

Has proposed, I've include a savePolicy in the share func:

...
let operation = CKModifyRecordsOperation(recordsToSave: [record, share], recordIDsToDelete: nil)
        operation.savePolicy = .allKeys
        operation.perRecordCompletionBlock = { record, error in
            self.dispatchQueue.async {
                if let error = error as? CKError,
                    error.code == CKError.serverRecordChanged,
                    let record = error.userInfo[CKRecordChangedErrorServerRecordKey] as? CKRecord {
                    recordsToSave.append(record)
                }
            }
        }
...

This solve the issue when share again a Company and the share link rest the same.
BUT after accepting the share again, no more Employees appears... only the new ones created since the "resharing" are synchronized....

from synckit.

LeJeko avatar LeJeko commented on June 30, 2024

Hi again... sorry I had an local cache issue, employees appears well after re-accept the share.
So just adding the line with savePolicy solve the issue!

from synckit.

mentrena avatar mentrena commented on June 30, 2024

Thanks for the report. The problem had to do with the cached record for a shared object not getting updated after its share was removed using UICloudSharingController, 0.6.4 should fix the problem but please reopen if it still persists.

from synckit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.