--- a/eric7/PluginManager/PluginManager.py Sat Sep 04 16:51:35 2021 +0200 +++ b/eric7/PluginManager/PluginManager.py Sat Sep 04 20:26:21 2021 +0200 @@ -1227,7 +1227,7 @@ Public method to check the availability of updates of plug-ins. """ period = Preferences.getPluginManager("UpdatesCheckInterval") - if period == 0: + if period == 0 or not self.__ui.isOnline(): return elif period in [1, 2, 3]: lastModified = QFileInfo(self.pluginRepositoryFile).lastModified()