From 68107111f044ac3334160d1a45dcb0b18e147bd0 Mon Sep 17 00:00:00 2001 From: Raymond Date: Fri, 27 Aug 2021 08:51:26 -0400 Subject: [PATCH] Filter IsEnabled when retrieving repos from the settings window 8feb0a --- Dalamud/Plugin/Internal/PluginManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Dalamud/Plugin/Internal/PluginManager.cs b/Dalamud/Plugin/Internal/PluginManager.cs index ca7c69fa2..ed46fb581 100644 --- a/Dalamud/Plugin/Internal/PluginManager.cs +++ b/Dalamud/Plugin/Internal/PluginManager.cs @@ -148,6 +148,7 @@ namespace Dalamud.Plugin.Internal var repos = new List() { PluginRepository.MainRepo }; repos.AddRange(configuration.ThirdRepoList + .Where(repo => repo.IsEnabled) .Select(repo => new PluginRepository(repo.Url, repo.IsEnabled))); this.Repos = repos;