God damn.

This commit is contained in:
Nicolas Stepien 2012-02-22 02:55:36 +01:00
parent a5c1461de8
commit d14206f0e3
3 changed files with 3 additions and 2 deletions

View File

@ -630,7 +630,7 @@
}, },
email: function(root) { email: function(root) {
var mail; var mail;
if (!(mail = $('.linkmail', root))) return mail.href; if (mail = $('.linkmail', root)) return mail.href;
return false; return false;
}, },
subject: function(root, isOP) { subject: function(root, isOP) {

View File

@ -3,6 +3,7 @@ master
2.27.1 2.27.1
- Mayhem - Mayhem
Fix stubs with the new filter. Fix stubs with the new filter.
Fix mail filtering.
The MD5 will now check for exact string matching, it will not use regular expressions. The MD5 will now check for exact string matching, it will not use regular expressions.
2.27.0 2.27.0

View File

@ -544,7 +544,7 @@ filter =
return trip.textContent return trip.textContent
false false
email: (root) -> email: (root) ->
unless mail = $ '.linkmail', root if mail = $ '.linkmail', root
return mail.href return mail.href
false false
subject: (root, isOP) -> subject: (root, isOP) ->