From 830207f43e5eec3713c3e98c5cdc69d12a41c125 Mon Sep 17 00:00:00 2001 From: goat Date: Sat, 8 Jun 2024 20:40:02 +0200 Subject: [PATCH] pm: consider plugins without a valid source repo as orphaned --- Dalamud/Plugin/Internal/Types/LocalPlugin.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Dalamud/Plugin/Internal/Types/LocalPlugin.cs b/Dalamud/Plugin/Internal/Types/LocalPlugin.cs index 227a6c707..84ce753cc 100644 --- a/Dalamud/Plugin/Internal/Types/LocalPlugin.cs +++ b/Dalamud/Plugin/Internal/Types/LocalPlugin.cs @@ -178,7 +178,6 @@ internal class LocalPlugin : IDisposable /// Gets a value indicating whether or not this plugin is orphaned(belongs to a repo) or not. /// public bool IsOrphaned => !this.IsDev && - !this.manifest.InstalledFromUrl.IsNullOrEmpty() && // TODO(api8): Remove this, all plugins will have a proper flag this.GetSourceRepository() == null; ///