mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-10 06:34:41 +02:00
Updates to upload check, docs
This commit is contained in:
parent
f9e91987ac
commit
2e10fdfdf5
5 changed files with 39 additions and 20 deletions
|
@ -401,8 +401,9 @@ exports.MenuModule = class MenuModule extends PluginModule {
|
|||
let textView;
|
||||
let customMciId = startId;
|
||||
const config = this.menuConfig.config;
|
||||
const endId = options.endId || 99; // we'll fail to get a view before 99
|
||||
|
||||
while( (textView = this.viewControllers[formName].getView(customMciId)) ) {
|
||||
while(customMciId <= endId && (textView = this.viewControllers[formName].getView(customMciId)) ) {
|
||||
const key = `${formName}InfoFormat${customMciId}`; // e.g. "mainInfoFormat10"
|
||||
const format = config[key];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue