Skip to content

Commit

Permalink
fix: Wrong searchScope while getting grouped files
Browse files Browse the repository at this point in the history
  • Loading branch information
seberoth committed Jun 8, 2024
1 parent fb3d13e commit 30062e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WolvenKit.App/Services/AppArchiveManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ private void RebuildModRoot()
}

public override Dictionary<string, IEnumerable<IGameFile>> GetGroupedFiles() =>
GetGroupedFiles(IsModBrowserActive ? ArchiveManagerScope.Mods : ArchiveManagerScope.Everywhere);
GetGroupedFiles(IsModBrowserActive ? ArchiveManagerScope.Mods : ArchiveManagerScope.Basegame);

#endregion Methods
}

0 comments on commit 30062e7

Please sign in to comment.