summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/private/App/AppStore/Fetcher/Fetcher.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/App/AppStore/Fetcher/Fetcher.php b/lib/private/App/AppStore/Fetcher/Fetcher.php
index 3ac207ebf75..5ce64671ffa 100644
--- a/lib/private/App/AppStore/Fetcher/Fetcher.php
+++ b/lib/private/App/AppStore/Fetcher/Fetcher.php
@@ -128,8 +128,9 @@ abstract class Fetcher {
*/
public function get() {
$appstoreenabled = $this->config->getSystemValue('appstoreenabled', true);
+ $internetavailable = $this->config->getSystemValue('has_internet_connection', true);
- if (!$appstoreenabled) {
+ if (!$appstoreenabled || !$internetavailable) {
return [];
}