updated changelog

This commit is contained in:
Sam Schott 2020-04-10 22:20:25 +02:00
parent 33bc669dee
commit 0453ccadc5
2 changed files with 4 additions and 1 deletions

View File

@ -11,9 +11,10 @@
- Fixes a minor issue where internet connection errors while resuming syncing could
result in continuous retries of the upload until the connection was finally established.
Instead, Maestral now pauses all syncing until a connection can be stablished.
Instead, Maestral now pauses all syncing until a connection can be established.
- Fixes handling of errors when starting a file system watch such as inofify limit and
permission errors.
- Fixes a rare issue which could lead to false conflicting copies of folders.
- Fixes handling of errors from too long file names.
- Fixes handling of some uncaught insufficient disk space errors.
- Fixes autostart module on macOS.

View File

@ -1468,6 +1468,8 @@ class UpDownSync:
# conflicts due to race conditions when a file inside a folder is created in
# between the conflict check and subsequent upload of the folder (see issue #116)
sorted_events['dir_created'].sort(key=lambda x: x.src_path.count('/'))
for event in sorted_events['dir_created']:
self.create_remote_entry(event)