Fix mistake in ObjectRepository::Create

Objects that could not be loaded were being returned with a success status causing blanks in the index file.
This commit is contained in:
Ted John 2018-02-12 21:22:27 +00:00
parent 683ffcdadc
commit 928ae3b4cd
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ public:
}
else
{
return std::make_tuple(true, ObjectRepositoryItem());
return std::make_tuple(false, ObjectRepositoryItem());
}
}