Skip to content

Commit

Permalink
Ignore non-zip files in package manifest.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximumADHD committed Mar 13, 2023
1 parent d0164ca commit c38a6ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ProjectSrc/Bootstrapper/PackageManifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ private PackageManifest(string data)
if (!int.TryParse(rawSize, out int size))
break;

if (!fileName.EndsWith(".zip"))
continue;

var package = new Package()
{
Name = fileName,
Expand Down
Binary file modified RobloxStudioModManager.exe
Binary file not shown.

0 comments on commit c38a6ee

Please sign in to comment.