Skip to content

Commit

Permalink
GH-2483 fix minor issue while checking for missing local files
Browse files Browse the repository at this point in the history
  • Loading branch information
peterix committed Dec 5, 2018
1 parent 0ee9152 commit f111d1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions api/logic/minecraft/update/LibrariesTask.cpp
Expand Up @@ -49,8 +49,7 @@ void LibrariesTask::executeTask()
processArtifactPool(libArtifactPool, failedLocalLibraries, inst->getLocalLibraryPath());

QStringList failedLocalJarMods;
QList<LibraryPtr> jarmodArtifactPool = profile->getJarMods();
processArtifactPool(libArtifactPool, failedLocalJarMods, inst->jarModsDir());
processArtifactPool(profile->getJarMods(), failedLocalJarMods, inst->jarModsDir());

if (!failedLocalJarMods.empty() || !failedLocalLibraries.empty())
{
Expand Down

0 comments on commit f111d1b

Please sign in to comment.