Fix scoped App.deleteModules()

If the scope had no submodules, the method would delete all modules.
This commit is contained in:
Chauncey McAskill
2017-08-08 09:35:05 -04:00
committed by GitHub
parent e42c97c676
commit 6d779b55c5

View File

@@ -60,6 +60,8 @@ class App {
if (moduleIds.length > 0) {
destroyAll = false;
} else {
return this;
}
}