HandlerFeedGenerator: Error when cat does not exists (instead of empty feed)

This commit is contained in:
Albert S. 2022-03-28 20:24:57 +02:00
parent 5bb3f55945
commit ba06d04a08
1 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,10 @@ std::vector<HandlerFeedGenerator::EntryRevisionPair> HandlerFeedGenerator::fetch
auto categoryDao = this->database->createCategoryDao();
for(std::string cat : categories)
{
if(!categoryDao->find(cat))
{
throw std::runtime_error("No such category");
}
auto catmembers = categoryDao->fetchMembers(cat, option);
std::copy(catmembers.begin(), catmembers.end(), std::inserter(members, members.end()));
}