diff --git a/4chan_x.user.js b/4chan_x.user.js index a324a820d..292cdaa1c 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -658,7 +658,7 @@ uniqueid: function(post) { var uid; if (uid = $('.posteruid', post.el)) { - return uid.textContent; + return uid.textContent.slice(5, -1); } return false; }, diff --git a/script.coffee b/script.coffee index dae8bb705..bea06f060 100644 --- a/script.coffee +++ b/script.coffee @@ -542,9 +542,8 @@ Filter = name: (post) -> $('.name', post.el).textContent uniqueid: (post) -> - # NEW HTML ??? if uid = $ '.posteruid', post.el - return uid.textContent + return uid.textContent[5...-1] false tripcode: (post) -> if trip = $ '.postertrip', post.el