Browse Source

Fixed full loader failure when manifest parsing fails

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
6b6dc005d5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      IPA.Loader/Loader/PluginMetadata.cs

+ 1
- 1
IPA.Loader/Loader/PluginMetadata.cs View File

@ -67,7 +67,7 @@ namespace IPA.Loader
/// A list of files (that aren't <see cref="File"/>) that are associated with this plugin.
/// </summary>
/// <value>a list of associated files</value>
public IReadOnlyList<FileInfo> AssociatedFiles { get; private set; }
public IReadOnlyList<FileInfo> AssociatedFiles { get; private set; } = new List<FileInfo>();
internal bool IsSelf;


Loading…
Cancel
Save