You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside of CloudFileProvider the Method searchFiles add an observer with block.
This Block runs in main thread. in my case it hase to check over 35.000 files and blocks the UI for 4-10 seconds.
the end of the block jumps back to background queue.
I moved the row
self.dispatch_queue.async {
to the beginning of the block and everything works fine.
The text was updated successfully, but these errors were encountered:
Inside of CloudFileProvider the Method searchFiles add an observer with block.
This Block runs in main thread. in my case it hase to check over 35.000 files and blocks the UI for 4-10 seconds.
the end of the block jumps back to background queue.
I moved the row
self.dispatch_queue.async {
to the beginning of the block and everything works fine.
The text was updated successfully, but these errors were encountered: