Merge branch 'master' of github.com:NuSkooler/enigma-bbs into 0.0.8-alpha

This commit is contained in:
Bryan Ashby
2017-09-24 10:00:16 -06:00
2 changed files with 36 additions and 52 deletions

View File

@@ -580,7 +580,11 @@ function displayThemedPrompt(name, client, options, cb) {
client,
dispOptions,
(err, artInfo) => {
return callback(err, promptConfig, artInfo);
if(err) {
return callback(err);
}
return callback(null, promptConfig, artInfo);
}
);
},