]> kaliko git repositories - mpd-sima.git/blobdiff - sima/plugins/core/history.py
Fixed bug in history plugin (24h db cleanup not fired)
[mpd-sima.git] / sima / plugins / core / history.py
index 4876eba3b4c61a6adb6d17c1850d4869506d0f83..6c3ad907ce6a5c19ed453f6a42dea50104656426 100644 (file)
@@ -34,7 +34,6 @@ class History(Plugin):
     """
     def __init__(self, daemon):
         Plugin.__init__(self, daemon)
-        self.sdb = daemon.sdb
         self._last_clean = time()
 
     def shutdown(self):
@@ -52,7 +51,7 @@ class History(Plugin):
             return
         self.log.debug('add history: "%s"', current)
         self.sdb.add_history(current)
-        if self._last_clean - time() > 86400:
+        if time() - self._last_clean > 86400:
             self.shutdown()
             self._last_clean = time()