mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-10 14:44:40 +02:00
Work on EnigError and usage as experiment; This will go to many other areas of the code
This commit is contained in:
parent
6a28b3ff35
commit
7da0abdc39
4 changed files with 25 additions and 9 deletions
|
@ -49,7 +49,11 @@ function ViewController(options) {
|
|||
menuUtil.handleAction(self.client, formData, actionBlock, (err) => {
|
||||
if(err) {
|
||||
// :TODO: What can we really do here?
|
||||
self.client.log.warn( { err : err }, 'Error during handleAction()');
|
||||
if('ALREADYTHERE' === err.reasonCode) {
|
||||
self.client.log.trace( err.reason );
|
||||
} else {
|
||||
self.client.log.warn( { err : err }, 'Error during handleAction()');
|
||||
}
|
||||
}
|
||||
|
||||
self.waitActionCompletion = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue