Fix user id filtering.
This commit is contained in:
parent
4a2ba910db
commit
070816de06
@ -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;
|
||||
},
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user