From 0dfcebbee3705b40532841b0e25c2bba637b0047 Mon Sep 17 00:00:00 2001 From: croneter Date: Thu, 25 Oct 2018 18:17:00 +0200 Subject: [PATCH] Fix TypeError --- resources/lib/library_sync/full_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/library_sync/full_sync.py b/resources/lib/library_sync/full_sync.py index d310c132..712ead5d 100644 --- a/resources/lib/library_sync/full_sync.py +++ b/resources/lib/library_sync/full_sync.py @@ -95,7 +95,7 @@ class FullSync(backgroundthread.KillableThread, common.libsync_mixin): Removes all the items that have NOT been updated (last_sync timestamp) is different """ - with self.context() as c: + with self.context(self.last_sync) as c: for plex_id in self.plex_db.plex_id_by_last_sync(self.plex_type, self.last_sync): if self.isCanceled():