node-sword-interface 1.0.53 → 1.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -201,7 +201,7 @@ vector<string> RepositoryInterface::getRepoNames()
|
|
|
201
201
|
|
|
202
202
|
string source = string(it->second->caption);
|
|
203
203
|
|
|
204
|
-
#if defined(__ANDROID__)
|
|
204
|
+
#if defined(__ANDROID__) || defined(__APPLE__)
|
|
205
205
|
// Since August/September 2024 there have been issues observed with the access to the STEP Bible repository.
|
|
206
206
|
// We filter it out here, since it is currently dysfunctional.
|
|
207
207
|
if (source != "STEP Bible") {
|
|
@@ -590,4 +590,4 @@ bool RepositoryInterface::isModuleAvailableInRepo(string moduleName, string repo
|
|
|
590
590
|
sword::InstallMgr* RepositoryInterface::getInstallMgr()
|
|
591
591
|
{
|
|
592
592
|
return this->_installMgr;
|
|
593
|
-
}
|
|
593
|
+
}
|