From af85eae42909106d069df3b5d68bce69c5198b82 Mon Sep 17 00:00:00 2001 From: jeff Date: Mon, 19 Oct 2015 09:12:32 -0400 Subject: [PATCH] ammend nnptchan.js to use old style shorthashes --- contrib/static/nntpchan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/static/nntpchan.js b/contrib/static/nntpchan.js index 69e1a18..0ea6747 100644 --- a/contrib/static/nntpchan.js +++ b/contrib/static/nntpchan.js @@ -9,6 +9,6 @@ function nntpchan_backlink(shorthash) var elem = document.getElementById("postform_message"); if ( elem ) { - elem.value += ">>" + shorthash + "\n"; + elem.value += ">>" + shorthash.substr(2,10) + "\n"; } }