Update sync_app.py

This commit is contained in:
dobefore 2021-05-01 13:14:25 +08:00 committed by GitHub
parent 4c305dff88
commit 556f46b58a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -178,7 +178,7 @@ class SyncCollectionHandler(Syncer):
]
def getTags(self):
return [t for t, usn in self.col.tags.allItems()
return [t for t, usn in self.allItems()
if usn >= self.minUsn]
class SyncMediaHandler: