From ea8c810a058b29552abb03ac4ca1bd7df7df4f24 Mon Sep 17 00:00:00 2001
From: Marcel van der Veldt <m.vanderveldt@outlook.com>
Date: Thu, 19 Mar 2015 11:20:58 +0100
Subject: [PATCH] fixed small error in full sync

---
 resources/lib/LibrarySync.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/resources/lib/LibrarySync.py b/resources/lib/LibrarySync.py
index 7924ffa5..bc88ef4c 100644
--- a/resources/lib/LibrarySync.py
+++ b/resources/lib/LibrarySync.py
@@ -447,7 +447,7 @@ class LibrarySync():
                                 comparestring2 = str(KodiItem["season"]) + "-" + str(KodiItem["episode"])
                                 if comparestring1 == comparestring2:
                                     #match found - update episode
-                                    WriteKodiDB().updateEpisodeToKodiLibrary(item,KodiItem,tvshow)
+                                    WriteKodiDB().updateEpisodeToKodiLibrary(item,KodiItem)
                                     break
                             
                         if(self.ShouldStop()):