Skip to content

Commit

Permalink
Do not filter out modules that do not have Strong's keys
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-klein committed Oct 28, 2024
1 parent 50ab470 commit 33ef78b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sword_backend/repository_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ vector<SWModule*> RepositoryInterface::getAllRepoModules(string repoName, Module
SWModule* currentModule = it->second;
string currentModuleType = currentModule->getType();

if (moduleType == ModuleType::dict && !this->_moduleHelper.moduleHasStrongsKeys(currentModule)) {
/*if (moduleType == ModuleType::dict && !this->_moduleHelper.moduleHasStrongsKeys(currentModule)) {
continue;
}
}*/

if (moduleTypeString == "ANY" || currentModuleType == moduleTypeString) {
modules.push_back(currentModule);
Expand Down

0 comments on commit 33ef78b

Please sign in to comment.