Skip to content

Commit

Permalink
Fix SMAPI install (#2453)
Browse files Browse the repository at this point in the history
  • Loading branch information
Al12rs authored Jan 8, 2025
1 parent b8beabe commit 797feda
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/NexusMods.Library/AddLibraryFileJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ internal class AddLibraryFileJob : IJobDefinitionWithStart<AddLibraryFileJob, Li

private Extension[] NestedArchiveExtensions { get; } =
[
KnownExtensions._7z, KnownExtensions.Rar, KnownExtensions.Zip, KnownExtensions._7zip
KnownExtensions._7z, KnownExtensions.Rar, KnownExtensions.Zip, KnownExtensions._7zip,
// Stardew Valley SMAPI nested archive
new(".dat"),
];

public static IJobTask<AddLibraryFileJob, LibraryFile.New> Create(IServiceProvider provider, ITransaction transaction, AbsolutePath filePath, bool doCommit, bool doBackup)
Expand Down

0 comments on commit 797feda

Please sign in to comment.