Archived
1
0

use correct parameter in admin command

This commit is contained in:
jeff 2015-09-19 09:02:08 -04:00
parent e70c4ed84e
commit 40d6cf77ad

View File

@ -49,8 +49,8 @@ function nntpchan_admin(method, param) {
return method;
},
handle: function(j) {
if (j.msg) {
return document.createTextNode(j.msg);
if (j.result) {
return document.createTextNode(j.result);
} else {
return "nothing happened?";
}