Clippings currently doesn't report an error when it is unable to read the sync data from the sync file. For example, on macOS, an error would occur if Sync Clippings Helper doesn't have full disk access (Python error: [Errno 1] Operation not permitted: <full path to file>).
These errors are now exposed by Sync Clippings Helper as of version 2.0, via the new native message "get-compressed-synced-clippings". When this happens, the response will be in the following structure:
Clippings currently doesn't report an error when it is unable to read the sync data from the sync file. For example, on macOS, an error would occur if Sync Clippings Helper doesn't have full disk access (Python error:
[Errno 1] Operation not permitted: <full path to file>
).These errors are now exposed by Sync Clippings Helper as of version 2.0, via the new native message "get-compressed-synced-clippings". When this happens, the response will be in the following structure:
For the above macOS example, the
details
would be:PermissionError: [Errno 1] Operation not permitted
.See related issue: aecreations/sync-clippings#20.