From c65110d60bb280a120ff5fcaf26e6a48844cb775 Mon Sep 17 00:00:00 2001 From: N00MKRAD Date: Sun, 16 May 2021 21:32:21 +0200 Subject: [PATCH] Don't download model list by default (compat reasons) --- Code/OS/Updater.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Code/OS/Updater.cs b/Code/OS/Updater.cs index 451496e..8a043c6 100644 --- a/Code/OS/Updater.cs +++ b/Code/OS/Updater.cs @@ -142,6 +142,9 @@ namespace Flowframes.OS public static async Task UpdateModelList() { + if (!Config.GetBool("fetchModelsFromRepo", false)) + return; + foreach (AI ai in Networks.networks) { try