From 97a1aba1252643eeef4146270e8d65f85e22a8f4 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Fri, 26 Oct 2018 07:36:59 -0400 Subject: [PATCH] fix message --- contrib/static/overchan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/static/overchan.js b/contrib/static/overchan.js index f274d2b..487ee05 100644 --- a/contrib/static/overchan.js +++ b/contrib/static/overchan.js @@ -21,7 +21,7 @@ var nntpchan_mod_delete = function(longhash) { var j = JSON.parse(ajax.responseText); if(j.deleted.length > 0) { - elem.appendChild(document.createTextNode(j.deleted.join(","))); + elem.appendChild(document.createTextNode("deleted: " + j.deleted.join(","))); } } else