1
0
mirror of https://github.com/Mauler125/r5sdk.git synced 2025-02-09 19:15:03 +01:00
This commit is contained in:
Kawe Mazidjatari 2022-06-08 23:35:46 +02:00
parent e461412fde
commit dab5133e07

@ -171,10 +171,10 @@ vector<string> CPackedStore::GetEntryPaths(const string& svPathIn, const nlohman
{
try
{
string svBlockPath = ConvertToUnixPath(dir->path().u8string());
if (jManifest.contains(StringReplaceC(svBlockPath, svPathIn, "")))
string svEntryPath = ConvertToUnixPath(dir->path().u8string());
if (jManifest.contains(StringReplaceC(svEntryPath, svPathIn, "")))
{
vPaths.push_back(svBlockPath);
vPaths.push_back(svEntryPath);
}
}
catch (const std::exception& ex)