diff --git a/couchpotato/core/_base/updater/main.py b/couchpotato/core/_base/updater/main.py index a5fd73f..c325603 100644 --- a/couchpotato/core/_base/updater/main.py +++ b/couchpotato/core/_base/updater/main.py @@ -360,8 +360,12 @@ class DesktopUpdater(Plugin): } def check(self): - pass + self.desktop.CheckForUpdate(silentUnlessUpdate = True) def getVersion(self): - return {} + return { + 'hash': self.desktop._esky.active_version, + 'data': None, + 'type': 'desktop', + }