We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The filebased QuickAccess impls use the following pattern to add/or remove an entry:
The latter might not be possible atomically (e.g. /tmp/ and /home/user/... can be on different disks/partitions). The error message:
/tmp/
/home/user/...
Caused by: java.nio.file.AtomicMoveNotSupportedException: /tmp/user-places.xbel.cryptomator.tmp -> /home/user/.local/share/user-places.xbel: Invalid cross-device link
If atomic move is not supported, we could relax the condition on a second try.
The text was updated successfully, but these errors were encountered:
infeo
No branches or pull requests
The filebased QuickAccess impls use the following pattern to add/or remove an entry:
The latter might not be possible atomically (e.g.
/tmp/
and/home/user/...
can be on different disks/partitions). The error message:If atomic move is not supported, we could relax the condition on a second try.
The text was updated successfully, but these errors were encountered: