This commit is contained in:
Nicolas Stepien 2012-08-20 23:27:15 +02:00
parent f48f4c37a9
commit 7fb4c97611
3 changed files with 6 additions and 0 deletions

View File

@ -3799,6 +3799,9 @@
_ref = post.quotes;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
quote = _ref[_i];
if (quote.parentNode.getAttribute('style') === 'font-size: smaller;') {
break;
}
if (qid = quote.hash.slice(2)) {
quotes[qid] = true;
}

View File

@ -2,6 +2,7 @@ master
- Mayhem
Fix cooldown on /q/.
Fix thread creation with no file on /q/.
Fix 'Administrator/Moderator/Developer Replies' creating extra backlinks on /q/.
Add /mlp/ archive redirection.
2.34.4

View File

@ -3021,6 +3021,8 @@ QuoteBacklink =
return if post.isInlined
quotes = {}
for quote in post.quotes
# Stop at 'Admin/Mod/Dev Replies:' on /q/
break if quote.parentNode.getAttribute('style') is 'font-size: smaller;'
# Don't process >>>/b/.
if qid = quote.hash[2..]
# Duplicate quotes get overwritten.