From 6b6dc005d57fde707747a1188f4e7a0a57fabb05 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Sun, 29 Mar 2020 15:35:34 -0500 Subject: [PATCH] Fixed full loader failure when manifest parsing fails --- IPA.Loader/Loader/PluginMetadata.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPA.Loader/Loader/PluginMetadata.cs b/IPA.Loader/Loader/PluginMetadata.cs index ccbfda3d..8dae9738 100644 --- a/IPA.Loader/Loader/PluginMetadata.cs +++ b/IPA.Loader/Loader/PluginMetadata.cs @@ -67,7 +67,7 @@ namespace IPA.Loader /// A list of files (that aren't ) that are associated with this plugin. /// /// a list of associated files - public IReadOnlyList AssociatedFiles { get; private set; } + public IReadOnlyList AssociatedFiles { get; private set; } = new List(); internal bool IsSelf;