From 121cb3c7b40bac4295fbbf115edfd322fb9d608b Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 28 Apr 2012 20:23:20 +0200 Subject: [PATCH] Remove update message after update. fixes #163 --- couchpotato/core/_base/updater/static/updater.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/couchpotato/core/_base/updater/static/updater.js b/couchpotato/core/_base/updater/static/updater.js index 202540d3..899f8796 100644 --- a/couchpotato/core/_base/updater/static/updater.js +++ b/couchpotato/core/_base/updater/static/updater.js @@ -79,6 +79,8 @@ var UpdaterBase = new Class({ if(json.success){ App.restart('Please wait while CouchPotato is being updated with more awesome stuff.', 'Updating'); App.checkAvailable.delay(500, App); + if(self.message) + self.message.destroy(); } } });