summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--combox/events.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/combox/events.py b/combox/events.py
index d89acb6..e0b558e 100644
--- a/combox/events.py
+++ b/combox/events.py
@@ -263,7 +263,8 @@ class NodeDirMonitor(LoggingEventHandler):
for f in files:
shard = path.join(root, f)
- if not self.shardp(shard):
+ if (not self.shardp(shard) and
+ '.dropbox.cache' in shard):
continue
file_cb_path = cb_path(shard, self.config)