mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-18 22:49:10 +00:00
Skip "Inbox" during migration
No permission.
This commit is contained in:
parent
87249cb8ad
commit
9005bf6c19
@ -97,6 +97,9 @@ class TransientStore {
|
||||
let fm = FileManager.default
|
||||
do {
|
||||
for c in try fm.contentsOfDirectory(atPath: oldDocumentsURL.path) {
|
||||
guard c != "Inbox" else {
|
||||
continue
|
||||
}
|
||||
let old = oldDocumentsURL.appendingPathComponent(c)
|
||||
let new = newDocumentsURL.appendingPathComponent(c)
|
||||
log.verbose("Move:")
|
||||
|
Loading…
Reference in New Issue
Block a user