821cfc7
diff --color -Nur calibre-6.17.0.orig/src/calibre/gui2/update.py calibre-6.17.0/src/calibre/gui2/update.py
821cfc7
--- calibre-6.17.0.orig/src/calibre/gui2/update.py	2023-05-06 11:36:35.678461036 -0700
821cfc7
+++ calibre-6.17.0/src/calibre/gui2/update.py	2023-05-06 11:39:10.365134930 -0700
821cfc7
@@ -82,20 +82,6 @@
b46af63
         while not self.shutdown_event.is_set():
830d201
             calibre_update_version = NO_CALIBRE_UPDATE
830d201
             plugins_update_found = 0
830d201
-            try:
830d201
-                version = get_newest_version()
830d201
-                if version[:2] > numeric_version[:2]:
830d201
-                    calibre_update_version = version
830d201
-            except Exception as e:
830d201
-                prints('Failed to check for calibre update:', as_unicode(e))
830d201
-            try:
830d201
-                update_plugins = get_plugin_updates_available(raise_error=True)
830d201
-                if update_plugins is not None:
830d201
-                    plugins_update_found = len(update_plugins)
830d201
-            except Exception as e:
830d201
-                prints('Failed to check for plugin update:', as_unicode(e))
830d201
-            if calibre_update_version != NO_CALIBRE_UPDATE or plugins_update_found > 0:
b46af63
-                self.signal.update_found.emit(calibre_update_version, plugins_update_found)
b46af63
             self.shutdown_event.wait(self.INTERVAL)
3e00138
 
b46af63
     def shutdown(self):