mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
ignore files ending with ".tmp"
This commit is contained in:
parent
d718676709
commit
3055bcecb3
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ class SyncedFolderObserver extends RecursiveFileObserver {
|
|||
|
||||
File temp = new File(path);
|
||||
|
||||
if (!temp.getName().equalsIgnoreCase("null")) {
|
||||
if (!temp.getName().equalsIgnoreCase("null") && !temp.getName().endsWith(".tmp")) {
|
||||
PersistableBundle bundle = new PersistableBundle();
|
||||
// TODO extract
|
||||
bundle.putString(SyncedFolderJobService.LOCAL_PATH, path);
|
||||
|
|
Loading…
Reference in a new issue