mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-06 20:55:30 +02:00
* Lots of experimental stuff with message area in relation of FSE. Have a fairly good idea now how this can work... a few missing pieces
This commit is contained in:
parent
dbb3e04166
commit
901f83453c
4 changed files with 100 additions and 64 deletions
|
@ -42,13 +42,15 @@ function MenuModule(options) {
|
|||
self.menuConfig.art,
|
||||
self.client,
|
||||
{ font : self.menuConfig.font },
|
||||
function displayed(err, artData)
|
||||
{
|
||||
if(!err) {
|
||||
function displayed(err, artData) {
|
||||
if(err) {
|
||||
self.client.log.debug( { art : self.menuConfig.arg, err : err }, 'Could not display art');
|
||||
} else {
|
||||
mciData.menu = artData.mciMap;
|
||||
}
|
||||
callback(err);
|
||||
});
|
||||
callback(null); // non-fatal
|
||||
}
|
||||
);
|
||||
} else {
|
||||
callback(null);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue