From 2703d5aa66d020460a187985be146f2484fb25e9 Mon Sep 17 00:00:00 2001 From: Maniack Crudelis Date: Tue, 26 Feb 2019 00:07:53 +0100 Subject: [PATCH] Use apps.json as default list --- src/yunohost/tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/yunohost/tools.py b/src/yunohost/tools.py index a011b1546..11d90dd09 100644 --- a/src/yunohost/tools.py +++ b/src/yunohost/tools.py @@ -415,10 +415,10 @@ def tools_postinstall(operation_logger, domain, password, ignore_dyndns=False, # Enable UPnP silently and reload firewall firewall_upnp('enable', no_refresh=True) - # Setup the default official app list with cron job + # Setup the default apps list with cron job try: app_fetchlist(name="yunohost", - url="https://app.yunohost.org/official.json") + url="https://app.yunohost.org/apps.json") except Exception as e: logger.warning(str(e))